PEP 750: fix specifier mixup so that they are consistent with code example (#3900)

This commit is contained in:
Claudia Pellegrino 2024-08-11 13:41:19 +02:00 committed by GitHub
parent 3b3af3408c
commit e684657472
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -207,9 +207,9 @@ You can see each of the ``Interpolation`` parts getting extracted:
- The lambda expression to call and get the value in the scope it was defined
- The raw string of the interpolation (``name``)
- The Python "conversion" field (``s``)
- The Python "conversion" field (``r``)
- Any `format specification <https://docs.python.org/3/library/string.html#format-specification-mini-language>`_
(``r``)
(``s``)
Specification
=============