diff options
author | T. Wouters <thomas@python.org> | 2023-08-21 19:39:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 19:39:45 (GMT) |
commit | bc97eb76bb674d76b907e7031f1b7ea11b68121b (patch) | |
tree | 5e72dc99bb3346f431c04a2b1360109169d5057c | |
parent | f04024d5880d0ff8888ae3899074aeddf5473bfc (diff) | |
download | cpython-bc97eb76bb674d76b907e7031f1b7ea11b68121b.zip cpython-bc97eb76bb674d76b907e7031f1b7ea11b68121b.tar.gz cpython-bc97eb76bb674d76b907e7031f1b7ea11b68121b.tar.bz2 |
[3.12] Fix sphinx-lint issue now that lint runs on Misc/NEWS.d (#108237)
Fix lint warnings in Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst
(effectively a backport of GH-108212).
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst b/Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst index f051317..1d959a3 100644 --- a/Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst +++ b/Misc/NEWS.d/next/Library/2023-08-17-14-45-25.gh-issue-105736.NJsH7r.rst @@ -1,3 +1,3 @@ -Harmonized the pure Python version of OrderedDict with the C version. Now, -both versions set up their internal state in `__new__`. Formerly, the pure -Python version did the set up in `__init__`. +Harmonized the pure Python version of :class:`~collections.OrderedDict` with the C version. Now, +both versions set up their internal state in ``__new__``. Formerly, the pure +Python version did the set up in ``__init__``. |