summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/arg.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/c-api/arg.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/c-api/arg.rst')
-rw-r--r--Doc/c-api/arg.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst
index e8d141f..9d744a1 100644
--- a/Doc/c-api/arg.rst
+++ b/Doc/c-api/arg.rst
@@ -555,7 +555,7 @@ Building values
Same as ``s#``.
``u`` (:class:`str`) [const wchar_t \*]
- Convert a null-terminated :c:expr:`wchar_t` buffer of Unicode (UTF-16 or UCS-4)
+ Convert a null-terminated :c:type:`wchar_t` buffer of Unicode (UTF-16 or UCS-4)
data to a Python Unicode object. If the Unicode buffer pointer is ``NULL``,
``None`` is returned.