Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Python/errors.c
1 parent 6efd95c commit 2d8b6a4Copy full SHA for 2d8b6a4
1 file changed
InternalDocs/exception_handling.md
@@ -190,5 +190,6 @@ Exception Chaining Implementation
190
[Exception chaining](https://docs.python.org/dev/tutorial/errors.html#exception-chaining)
191
refers to setting the ``__context__`` and ``__cause__`` fields of an exception as it is
192
being raised. The ``__context__`` field is set by ``_PyErr_SetObject()`` in
193
-:cpy-file:`Python/errors.c` (which is ultimately called by all ``PyErr_Set*()`` functions).
+[Python/errors.c](https://github.com/python/cpython/blob/main/Python/errors.c)
194
+(which is ultimately called by all ``PyErr_Set*()`` functions).
195
The ``__cause__`` field (explicit chaining) is set by the ``RAISE_VARARGS`` bytecode.
0 commit comments