diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-08-17 08:30:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-17 08:30:47 (GMT) |
commit | 358b1acc69c09d110eecfca8fa6b72cea376c5f7 (patch) | |
tree | ebfd7ec96ad82f12ee3190dd404a22bf1a972579 /Doc/whatsnew/2.2.rst | |
parent | b8e62cfb01f072cc18d32c23e38b3f1107f19a7f (diff) | |
download | cpython-358b1acc69c09d110eecfca8fa6b72cea376c5f7.zip cpython-358b1acc69c09d110eecfca8fa6b72cea376c5f7.tar.gz cpython-358b1acc69c09d110eecfca8fa6b72cea376c5f7.tar.bz2 |
[3.11] gh-107298: Fix some references in the C API documentation (GH-108072) (GH-108076)
(cherry picked from commit f51f0466c07eabc6177c2f64f70c952dada050e8)
Diffstat (limited to 'Doc/whatsnew/2.2.rst')
-rw-r--r-- | Doc/whatsnew/2.2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.2.rst b/Doc/whatsnew/2.2.rst index 44e9bd8..7de48a4 100644 --- a/Doc/whatsnew/2.2.rst +++ b/Doc/whatsnew/2.2.rst @@ -1109,7 +1109,7 @@ code, none of the changes described here will affect you very much. definition tables to simplify implementation of methods with no arguments or a single untyped argument. Calling such methods is more efficient than calling a corresponding method that uses :c:macro:`METH_VARARGS`. Also, the old - :c:macro:`METH_OLDARGS` style of writing C methods is now officially deprecated. + :c:macro:`!METH_OLDARGS` style of writing C methods is now officially deprecated. * Two new wrapper functions, :c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` were added to provide cross-platform implementations for the relatively new |