diff options
author | Shantanu <12621235+hauntsaninja@users.noreply.github.com> | 2021-05-14 05:59:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-14 05:59:53 (GMT) |
commit | 65d180d98348289db1592e8dd2cc6af4225573ea (patch) | |
tree | 915efca5b024c12e76b2f4ee018c0f95eaaf7cf0 /Doc/library | |
parent | 3d4b5f1019123a7d74801500eb18ec8fa12136bc (diff) | |
download | cpython-65d180d98348289db1592e8dd2cc6af4225573ea.zip cpython-65d180d98348289db1592e8dd2cc6af4225573ea.tar.gz cpython-65d180d98348289db1592e8dd2cc6af4225573ea.tar.bz2 |
bpo-38250: add version added for FlagBoundary (GH-25820)
* bpo-38250: add version added for FlagBoundary
* Also add versionadded for utilities
Co-authored-by: hauntsaninja <>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/enum.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 466d959..b755622 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -575,6 +575,8 @@ Data Types >>> KeepFlag(2**2 + 2**4) KeepFlag.BLUE|0x10 +.. versionadded:: 3.10 ``FlagBoundary`` + Utilites and Decorators ----------------------- @@ -598,6 +600,7 @@ Utilites and Decorators also injects the members, and their aliases, into the the global namespace they were defined in. +.. versionadded:: 3.10 .. decorator:: property @@ -610,6 +613,8 @@ Utilites and Decorators *Enum* class, and *Enum* subclasses can define members with the names ``value`` and ``name``. +.. versionadded:: 3.10 + .. decorator:: unique A :keyword:`class` decorator specifically for enumerations. It searches an |