diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-22 18:35:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 18:35:22 (GMT) |
commit | f8b7fe2f2647813ae8249675a80e59c117d30fe1 (patch) | |
tree | 16fcc31b7ebd0ae7ada477ec1d3594428505e64c /Doc/whatsnew/3.3.rst | |
parent | 26e08dfdd7ac1b3d567d30cd35e4898121580390 (diff) | |
download | cpython-f8b7fe2f2647813ae8249675a80e59c117d30fe1.zip cpython-f8b7fe2f2647813ae8249675a80e59c117d30fe1.tar.gz cpython-f8b7fe2f2647813ae8249675a80e59c117d30fe1.tar.bz2 |
gh-106948: Add standard external names to nitpick_ignore (GH-106949)
It includes standard C types, macros and variables like "size_t",
"LONG_MAX" and "errno", and standard environment variables like "PATH".
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index dbac741..911e5ba 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1984,7 +1984,7 @@ the form '-rwxrwxrwx'. struct ------ -The :mod:`struct` module now supports ``ssize_t`` and ``size_t`` via the +The :mod:`struct` module now supports :c:type:`ssize_t` and :c:type:`size_t` via the new codes ``n`` and ``N``, respectively. (Contributed by Antoine Pitrou in :issue:`3163`.) |