diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-08-23 17:12:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 17:12:42 (GMT) |
commit | 422f81b5d2359063826b8561f698d57e94f6a5d8 (patch) | |
tree | 09d53e2039706e7c6a2dbc07bf399dbb816b4389 /Doc/whatsnew/2.6.rst | |
parent | 2135bcd3ca9538c6782129f9a5837d62c2036102 (diff) | |
download | cpython-422f81b5d2359063826b8561f698d57e94f6a5d8.zip cpython-422f81b5d2359063826b8561f698d57e94f6a5d8.tar.gz cpython-422f81b5d2359063826b8561f698d57e94f6a5d8.tar.bz2 |
gh-107298: Fix a few more refs in the C API docs (GH-108361)
gh-107298: Fix few more refs in the C API docs
Diffstat (limited to 'Doc/whatsnew/2.6.rst')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 8b3d3a3..beba442 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -121,7 +121,7 @@ about features that will be removed in Python 3.0. You can run code with this switch to see how much work will be necessary to port code to 3.0. The value of this switch is available to Python code as the boolean variable :data:`sys.py3kwarning`, -and to C extension code as :c:data:`Py_Py3kWarningFlag`. +and to C extension code as :c:data:`!Py_Py3kWarningFlag`. .. seealso:: |