Skip to content

Commit 071438f

Browse files
Lint docs v5
1 parent ce5536b commit 071438f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/whatsnew/3.13.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1363,13 +1363,13 @@ New Features
13631363
* Add :c:func:`Py_HashPointer` function to hash a pointer.
13641364
(Contributed by Victor Stinner in :gh:`111545`.)
13651365

1366-
* Modified :c:func:`_PyUnicode_ClearInterned` function to always delete all
1366+
* Modified the ``_PyUnicode_ClearInterned`` function to always delete all
13671367
interned strings during a call to :c:func:`Py_Finalize`. This makes all
13681368
is backwards incompatible to any C-Extension that holds onto an interned
13691369
string after a call to :c:func:`Py_Finalize` and is then reused after a
13701370
call to :c:func:`Py_Initialize`. Any issues arising from this behavior will
13711371
normally result in crashes during the exectuion of the subsequent call to
1372-
:c:func:`Py_Initatilize` from accessing uninitialized memory. To fix, use
1372+
:c:func:`Py_Initialize` from accessing uninitialized memory. To fix, use
13731373
an address sanitizer (i.e. ASAN) to identify any use-after-free coming from
13741374
an interned string and deallocate it during module shutdown.
13751375
(Contribued by Eddie Elizondo in :gh:`113601`.)

0 commit comments

Comments
 (0)