mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
[3.13] Fix typo in Doc/extending/extending.rst (GH-136890) (#137561)
Some checks are pending
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Some checks are pending
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Co-authored-by: Cornelius Roemer <cornelius.roemer@gmail.com>
This commit is contained in:
parent
05292462b6
commit
aa4525fc45
1 changed files with 1 additions and 1 deletions
|
|
@ -239,7 +239,7 @@ and initialize it by calling :c:func:`PyErr_NewException` in the module's
|
|||
|
||||
SpamError = PyErr_NewException("spam.error", NULL, NULL);
|
||||
|
||||
Since :c:data:`!SpamError` is a global variable, it will be overwitten every time
|
||||
Since :c:data:`!SpamError` is a global variable, it will be overwritten every time
|
||||
the module is reinitialized, when the :c:data:`Py_mod_exec` function is called.
|
||||
|
||||
For now, let's avoid the issue: we will block repeated initialization by raising an
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue