diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-23 09:24:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 09:24:51 (GMT) |
commit | 456cf8b0972bedf035c648fcd5e384ead937f9db (patch) | |
tree | 1dae1246fd1d94b1b20f2d24d3bddb8a5c7d0282 /Doc/library/array.rst | |
parent | 98626c3c71f88707d7297d18e01801f27192ab5c (diff) | |
download | cpython-456cf8b0972bedf035c648fcd5e384ead937f9db.zip cpython-456cf8b0972bedf035c648fcd5e384ead937f9db.tar.gz cpython-456cf8b0972bedf035c648fcd5e384ead937f9db.tar.bz2 |
[3.12] gh-106948: Add standard external names to nitpick_ignore (GH-106949) (#107060)
* [3.12] 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".
(cherry picked from commit f8b7fe2f2647813ae8249675a80e59c117d30fe1)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* Delete 2023-05-31-18-37-57.gh-issue-105156.R4El5V.rst
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 |