]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38250: add version added for FlagBoundary (GH-25820)
authorShantanu <12621235+hauntsaninja@users.noreply.github.com>
Fri, 14 May 2021 05:59:53 +0000 (22:59 -0700)
committerGitHub <noreply@github.com>
Fri, 14 May 2021 05:59:53 +0000 (22:59 -0700)
* bpo-38250: add version added for FlagBoundary

* Also add versionadded for utilities

Co-authored-by: hauntsaninja <>
Doc/library/enum.rst

index 466d95941468afed45a54ebd857f1d5166e8f544..b755622afc36801d097e4a4a9bdf263edba8a64e 100644 (file)
@@ -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