diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-30 21:37:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-30 21:37:16 +0200 |
commit | e835b31d2b212c3c7820364398979cae2a9740b2 (patch) | |
tree | b4480396678dc575c8f183f0e5add28ee7f36604 /Doc/whatsnew/2.7.rst | |
parent | 1d8da61f5ad26274556e0bbce260ce292d0402a1 (diff) | |
download | cpython-git-e835b31d2b212c3c7820364398979cae2a9740b2.tar.gz |
bpo-38600: NULL -> ``NULL``. (GH-17001)
Also fix some other formatting.
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 9f8d9f202c..d19c8e01ad 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 |