diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-12-14 19:32:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 19:32:30 (GMT) |
commit | 15114517dd009a682c00a877475968990a9598a5 (patch) | |
tree | 00748706e494955532cd53ac237773e7f84573bf /Doc/conf.py | |
parent | 6b295722aa898a06f5b501b9d08b8e3c0999e4e5 (diff) | |
download | cpython-15114517dd009a682c00a877475968990a9598a5.zip cpython-15114517dd009a682c00a877475968990a9598a5.tar.gz cpython-15114517dd009a682c00a877475968990a9598a5.tar.bz2 |
[3.12] gh-101100: Fix Sphinx nitpicks in `library/collections.abc.rst` (GH-113116) (#113136)
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 d44a84e..bd098df 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -239,10 +239,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 |