Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -13411,7 +13411,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