diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-30 20:44:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-30 20:44:55 (GMT) |
commit | 2c921c65e9d0aa7e3a38c96a22d5eec56724da72 (patch) | |
tree | 385c930239295a07f30439dec59b6ffc63a08dda /Doc/whatsnew/2.7.rst | |
parent | f2ba17be2aec873741c2d8a55b1342afa360aec2 (diff) | |
download | cpython-2c921c65e9d0aa7e3a38c96a22d5eec56724da72.zip cpython-2c921c65e9d0aa7e3a38c96a22d5eec56724da72.tar.gz cpython-2c921c65e9d0aa7e3a38c96a22d5eec56724da72.tar.bz2 |
[3.8] bpo-38600: NULL -> ``NULL``. (GH-17001) (GH-17003)
Also fix some other formatting.
(cherry picked from commit e835b31d2b212c3c7820364398979cae2a9740b2)
Diffstat (limited to 'Doc/whatsnew/2.7.rst')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 9f8d9f2..d19c8e0 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -1169,7 +1169,7 @@ changes, or look through the Subversion logs for all the details. correctly copy bound instance methods. (Implemented by Robert Collins; :issue:`1515`.) -* The :mod:`ctypes` module now always converts ``None`` to a C NULL +* The :mod:`ctypes` module now always converts ``None`` to a C ``NULL`` pointer for arguments declared as pointers. (Changed by Thomas Heller; :issue:`4606`.) The underlying `libffi library <https://sourceware.org/libffi/>`__ has been updated to version |