diff options
author | Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com> | 2023-01-03 22:08:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-03 22:08:50 (GMT) |
commit | 64ed609c532a12b27f67a1e12e9e02f136ee3a94 (patch) | |
tree | b890d566330b24812feaae467648342f682178be /Doc | |
parent | e196d8c10a669e1996140a0e594489aa9421a38b (diff) | |
download | cpython-64ed609c532a12b27f67a1e12e9e02f136ee3a94.zip cpython-64ed609c532a12b27f67a1e12e9e02f136ee3a94.tar.gz cpython-64ed609c532a12b27f67a1e12e9e02f136ee3a94.tar.bz2 |
[Enum] docs: replace 'last value' by 'highest value' for Flag auto (GH-100709)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/enum.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 25a6e1f..47d9e39 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -807,9 +807,9 @@ Utilities and Decorators call an *Enum*'s :meth:`_generate_next_value_` to get an appropriate value. For *Enum* and *IntEnum* that appropriate value will be the last value plus one; for *Flag* and *IntFlag* it will be the first power-of-two greater - than the last value; for *StrEnum* it will be the lower-cased version of the - member's name. Care must be taken if mixing *auto()* with manually specified - values. + than the highest value; for *StrEnum* it will be the lower-cased version of + the member's name. Care must be taken if mixing *auto()* with manually + specified values. *auto* instances are only resolved when at the top level of an assignment: |