diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-12-14 19:32:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 19:32:37 (GMT) |
commit | ba6958522d7666720bc7ea10d2590680d00c86dd (patch) | |
tree | 9faf78848785b5c9730baec90d489f4e83070da0 /Doc/conf.py | |
parent | 99c8d16cff4180ab2b6a283984915b70d1263ce2 (diff) | |
download | cpython-ba6958522d7666720bc7ea10d2590680d00c86dd.zip cpython-ba6958522d7666720bc7ea10d2590680d00c86dd.tar.gz cpython-ba6958522d7666720bc7ea10d2590680d00c86dd.tar.bz2 |
[3.11] gh-101100: Fix Sphinx nitpicks in `library/collections.abc.rst` (GH-113116) (#113137)
gh-101100: Fix Sphinx nitpicks in `library/collections.abc.rst` (GH-113116)
(cherry picked from commit 006355b2a966060541166608ecfec4c957b85f55)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 0041253..3af2d36 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -231,10 +231,11 @@ nitpick_ignore += [ # be resolved, as the method is currently undocumented. For context, see # https://github.com/python/cpython/pull/103289. ('py:meth', '_SubParsersAction.add_parser'), - # Attributes that definitely should be documented better, + # Attributes/methods/etc. that definitely should be documented better, # but are deferred for now: ('py:attr', '__annotations__'), ('py:attr', '__wrapped__'), + ('py:meth', 'index'), # list.index, tuple.index, etc. ] # gh-106948: Copy standard C types declared in the "c:type" domain to the |