Skip to content

Commit a86ddb4

Browse files
committed
fix Sphinx warnings
1 parent da97340 commit a86ddb4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ stack manipulations such as ``dup``, ``drop``, ``swap``, ``over``, ``pick``,
767767
:pep:`584`.
768768

769769
.. versionchanged:: 3.15
770-
The built-in :meth:`defaultdict.__missing__` method no longer exists. A
770+
The built-in ``defaultdict.__missing__`` method no longer exists. A
771771
custom :meth:`~object.__missing__` method should no longer insert the
772772
generated value into the dictionary, as this is done by the new
773773
:meth:`__getitem__` method. defaultdict is now safe to use with
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The built-in :meth:`defaultdict.__missing__` method no longer exists. A custom
1+
The built-in ``defaultdict.__missing__`` method no longer exists. A custom
22
:meth:`~object.__missing__` method should no longer insert the generated value
3-
into the dictionary, as this is done by the new :meth:`__getitem__` method.
4-
defaultdict is now safe to use with :term:`free threading`.
3+
into the dictionary, as this is done by the new :meth:`defaultdict.__getitem__`
4+
method. defaultdict is now safe to use with :term:`free threading`.

0 commit comments

Comments
 (0)