@@ -636,7 +636,7 @@ an incorrect member::
636636Before :class: `StrEnum `, ``Directions.NORTH `` would have been the :class: `tuple `
637637``('north',) ``.
638638
639- .. versionadded :: 3.10
639+ .. versionadded :: 3.11
640640
641641
642642IntFlag
@@ -659,7 +659,7 @@ used.
659659 details.
660660
661661.. versionadded :: 3.6
662- .. versionchanged :: 3.10
662+ .. versionchanged :: 3.11
663663
664664Sample :class: `IntFlag ` class::
665665
@@ -696,7 +696,7 @@ It is also possible to name the combinations::
696696 Named combinations are considered aliases. Aliases do not show up during
697697 iteration, but can be returned from by-value lookups.
698698
699- .. versionchanged :: 3.10
699+ .. versionchanged :: 3.11
700700
701701Another important difference between :class: `IntFlag ` and :class: `Enum ` is that
702702if no flags are set (the value is 0), its boolean evaluation is :data: `False `::
@@ -728,7 +728,7 @@ be combined with them (but may lose :class:`IntFlag` membership::
728728 >>> list(RW)
729729 [Perm.R, Perm.W]
730730
731- .. versionadded :: 3.10
731+ .. versionadded :: 3.11
732732
733733
734734Flag
@@ -789,7 +789,7 @@ value::
789789 >>> list(purple)
790790 [Color.RED, Color.BLUE]
791791
792- .. versionadded :: 3.10
792+ .. versionadded :: 3.11
793793
794794.. note ::
795795
@@ -939,7 +939,7 @@ _Private__names
939939:ref: `Private names <private-name-mangling >` are not converted to enum members,
940940but remain normal attributes.
941941
942- .. versionchanged :: 3.10
942+ .. versionchanged :: 3.11
943943
944944
945945``Enum `` member type
@@ -962,7 +962,6 @@ it will raise a :exc:`DeprecationWarning`::
962962 <FieldTypes.size: 2>
963963
964964.. versionchanged :: 3.5
965- .. versionchanged :: 3.10
966965
967966
968967Creating members that are mixed with other data types
0 commit comments