summaryrefslogtreecommitdiffstats
path: root/Doc/library/array.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2023-07-23 09:24:37 (GMT)
committerGitHub <noreply@github.com>2023-07-23 09:24:37 (GMT)
commitec8718dd7c318202723ceeee9479f3824f3c019c (patch)
tree16762a178e8a93ac4fa99cc74bc4f76adcd1b7f9 /Doc/library/array.rst
parent65e40aaed0567830d8ec88769c27321f3504cd80 (diff)
downloadcpython-ec8718dd7c318202723ceeee9479f3824f3c019c.zip
cpython-ec8718dd7c318202723ceeee9479f3824f3c019c.tar.gz
cpython-ec8718dd7c318202723ceeee9479f3824f3c019c.tar.bz2
[3.11] gh-106948: Add standard external names to nitpick_ignore (GH-106949) (#107061)
It includes standard C types, macros and variables like "size_t", "LONG_MAX" and "errno", and standard environment variables like "PATH".. (cherry picked from commit f8b7fe2f2647813ae8249675a80e59c117d30fe1)
Diffstat (limited to 'Doc/library/array.rst')
-rw-r--r--Doc/library/array.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/array.rst b/Doc/library/array.rst
index 75c49e0..d6cb8c6 100644
--- a/Doc/library/array.rst
+++ b/Doc/library/array.rst
@@ -51,9 +51,9 @@ Notes:
It can be 16 bits or 32 bits depending on the platform.
.. versionchanged:: 3.9
- ``array('u')`` now uses ``wchar_t`` as C type instead of deprecated
+ ``array('u')`` now uses :c:type:`wchar_t` as C type instead of deprecated
``Py_UNICODE``. This change doesn't affect its behavior because
- ``Py_UNICODE`` is alias of ``wchar_t`` since Python 3.3.
+ ``Py_UNICODE`` is alias of :c:type:`wchar_t` since Python 3.3.
.. deprecated-removed:: 3.3 4.0