From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Fri, 8 Aug 2025 16:29:36 +0000 (+0300) Subject: [3.13] Fix typo in Doc/extending/extending.rst (GH-136890) (#137561) X-Git-Tag: v3.13.7~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa4525fc45c3a630f4529fb66989bb7865387f05;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix typo in Doc/extending/extending.rst (GH-136890) (#137561) Co-authored-by: Cornelius Roemer --- diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index c0a7a3ac678a..17c6fb224265 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -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