Skip to content

Commit

Permalink
Merge branch 'main' into multiprocessing_Queue_maxsize
Browse files Browse the repository at this point in the history
  • Loading branch information
Marwanmhks committed May 25, 2024
2 parents 81d6fc2 + 08e6543 commit 3669e0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,7 @@ expression support in the :mod:`re` module).
cases.


.. method:: str.format_map(mapping)
.. method:: str.format_map(mapping, /)

Similar to ``str.format(**mapping)``, except that ``mapping`` is
used directly and not copied to a :class:`dict`. This is useful
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix the signature of :meth:`str.format_map`.
2 changes: 1 addition & 1 deletion Objects/unicodeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -13490,7 +13490,7 @@ Return a formatted version of the string, using substitutions from args and kwar
The substitutions are identified by braces ('{' and '}').");

PyDoc_STRVAR(format_map__doc__,
"format_map($self, /, mapping)\n\
"format_map($self, mapping, /)\n\
--\n\
\n\
Return a formatted version of the string, using substitutions from mapping.\n\
Expand Down

0 comments on commit 3669e0b

Please sign in to comment.