PEP 663: add post date, fix typo

This commit is contained in:
Ethan Furman 2021-11-02 20:40:52 -07:00
parent f7e4199237
commit 2b41b5229a
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ Type: Informational
Content-Type: text/x-rst
Created: 23-Feb-2013
Python-Version: 3.11
Post-History: 20-Jul-2021
Post-History: 20-Jul-2021, 02-Nov-2021
Resolution:
@ -24,7 +24,7 @@ will have its ``format()`` match its ``str()``. In all cases, an enum's
``format()``).
Add a global enum decorator which changes the ``str()`` and ``repr()`` (and
``format()``) of the decorated enum to be a valid gobal reference: i.e.
``format()``) of the decorated enum to be a valid global reference: i.e.
``re.IGNORECASE`` instead of ``<RegexFlag.IGNORECASE: 2>``.