[3.13] gh-111999: Fix the signature of str.format_map() (GH-119540) (#119543)

(cherry picked from commit 08e65430aa)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-05-25 15:46:41 +02:00 committed by GitHub
parent 5544651350
commit f49749cf8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -0,0 +1 @@
Fix the signature of :meth:`str.format_map`.

View File

@ -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\