File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -562,15 +562,17 @@ The following exceptions are the exceptions that are usually raised.
562562
563563 Raised when the interpreter finds an internal error, but the situation does not
564564 look so serious to cause it to abandon all hope. The associated value is a
565- string indicating what went wrong (in low-level terms).
565+ string indicating what went wrong (in low-level terms). In :term: `CPython `,
566+ this could be raised by incorrectly using Python's C API, such as returning
567+ a ``NULL `` value without an exception set.
566568
567- You should report this to the author or maintainer of your Python interpreter.
569+ If you're confident that this exception wasn't your fault, you should
570+ report this to the author or maintainer of your Python interpreter.
568571 Be sure to report the version of the Python interpreter (``sys.version ``; it is
569572 also printed at the start of an interactive Python session), the exact error
570573 message (the exception's associated value) and if possible the source of the
571574 program that triggered the error.
572575
573-
574576.. exception :: SystemExit
575577
576578 This exception is raised by the :func: `sys.exit ` function. It inherits from
You can’t perform that action at this time.
0 commit comments