[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).
This commit is contained in:
T. Wouters 2023-08-21 21:39:45 +02:00 committed by GitHub
parent f04024d588
commit bc97eb76bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,3 @@
Harmonized the pure Python version of OrderedDict with the C version. Now, 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 both versions set up their internal state in ``__new__``. Formerly, the pure
Python version did the set up in `__init__`. Python version did the set up in ``__init__``.