diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-23 09:24:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 09:24:37 (GMT) |
commit | ec8718dd7c318202723ceeee9479f3824f3c019c (patch) | |
tree | 16762a178e8a93ac4fa99cc74bc4f76adcd1b7f9 /Doc/library/array.rst | |
parent | 65e40aaed0567830d8ec88769c27321f3504cd80 (diff) | |
download | cpython-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.rst | 4 |
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 |