diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-07-26 21:00:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 21:00:36 (GMT) |
commit | 603c5d50e89982e9b72a1b4d9edd5b52982b395a (patch) | |
tree | 11a8a0dc776680e85235d7be48763a4b80995f5b /Doc/conf.py | |
parent | 35aa6b80a6018ea12ea54dfb97da46b70c1cc81e (diff) | |
download | cpython-603c5d50e89982e9b72a1b4d9edd5b52982b395a.zip cpython-603c5d50e89982e9b72a1b4d9edd5b52982b395a.tar.gz cpython-603c5d50e89982e9b72a1b4d9edd5b52982b395a.tar.bz2 |
[3.11] gh-107091: Fix some uses of :c:type: role (GH-107138) (GH-107313)
(cherry picked from commit 6d5b6e71c87fca7c5c26f5dd8f325087962215cc)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index d5eea9c..c0e20c8 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -103,6 +103,10 @@ nitpick_ignore = [ ('c:type', 'uintmax_t'), ('c:type', 'va_list'), ('c:type', 'wchar_t'), + ('c:struct', 'in6_addr'), + ('c:struct', 'in_addr'), + ('c:struct', 'stat'), + ('c:struct', 'statvfs'), # Standard C macros ('c:macro', 'LLONG_MAX'), ('c:macro', 'LLONG_MIN'), |