diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-02-17 12:03:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-17 03:03:20 -0700 |
commit | 4dff48d1f454096efa2e1e7b4596bc56c6f68c20 (patch) | |
tree | b6a76d156b758daeace09bda96ad6da3331fc602 /Doc/conf.py | |
parent | 30fce5f228b7e2e8fd92f07113ac5632e6baf3b2 (diff) | |
download | cpython-4dff48d1f454096efa2e1e7b4596bc56c6f68c20.tar.gz cpython-4dff48d1f454096efa2e1e7b4596bc56c6f68c20.zip |
gh-101100: Fix Sphinx warnings in `whatsnew/3.2.rst` (#115580)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 0e84d866a22..7c4817320a7 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -275,6 +275,7 @@ nitpick_ignore += [ ('py:attr', '__annotations__'), ('py:meth', '__missing__'), ('py:attr', '__wrapped__'), + ('py:attr', 'decimal.Context.clamp'), ('py:meth', 'index'), # list.index, tuple.index, etc. ] |