summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2023-07-22 18:35:22 (GMT)
committerGitHub <noreply@github.com>2023-07-22 18:35:22 (GMT)
commitf8b7fe2f2647813ae8249675a80e59c117d30fe1 (patch)
tree16fcc31b7ebd0ae7ada477ec1d3594428505e64c /Doc/whatsnew/3.3.rst
parent26e08dfdd7ac1b3d567d30cd35e4898121580390 (diff)
downloadcpython-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.rst2
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`.)