gh-119786: Replace a Sphinx role with a link to `Python/errors.c` (#124990)

This commit is contained in:
Adam Turner 2024-10-05 01:00:19 +01:00 committed by GitHub
parent 6efd95c465
commit 2d8b6a4e9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -190,5 +190,6 @@ Exception Chaining Implementation
[Exception chaining](https://docs.python.org/dev/tutorial/errors.html#exception-chaining) [Exception chaining](https://docs.python.org/dev/tutorial/errors.html#exception-chaining)
refers to setting the ``__context__`` and ``__cause__`` fields of an exception as it is refers to setting the ``__context__`` and ``__cause__`` fields of an exception as it is
being raised. The ``__context__`` field is set by ``_PyErr_SetObject()`` in being raised. The ``__context__`` field is set by ``_PyErr_SetObject()`` in
: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)
(which is ultimately called by all ``PyErr_Set*()`` functions).
The ``__cause__`` field (explicit chaining) is set by the ``RAISE_VARARGS`` bytecode. The ``__cause__`` field (explicit chaining) is set by the ``RAISE_VARARGS`` bytecode.