summaryrefslogtreecommitdiffstats
path: root/Lib/enum.py
diff options
context:
space:
mode:
authorEthan Furman <ethan@stoneleaf.us>2022-06-23 14:48:25 (GMT)
committerGitHub <noreply@github.com>2022-06-23 14:48:25 (GMT)
commitb4e0d6124a848a22df1ba12891329242c9e96f11 (patch)
tree09aa7bcbd96a9f6bc51027909212fa70eb760be8 /Lib/enum.py
parent5b6e5762ca2f758330d2708c63e301720cf3dfae (diff)
downloadcpython-b4e0d6124a848a22df1ba12891329242c9e96f11.zip
cpython-b4e0d6124a848a22df1ba12891329242c9e96f11.tar.gz
cpython-b4e0d6124a848a22df1ba12891329242c9e96f11.tar.bz2
[Enum] fix typo (GH-94158)
Diffstat (limited to 'Lib/enum.py')
-rw-r--r--Lib/enum.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/enum.py b/Lib/enum.py
index 8d0982a..a41422c 100644
--- a/Lib/enum.py
+++ b/Lib/enum.py
@@ -1205,21 +1205,21 @@ class Enum(metaclass=EnumType):
def __init__(self, *args, **kwds):
pass
- def _generate_next_value_(name, start, count, last_value):
+ def _generate_next_value_(name, start, count, last_values):
"""
Generate the next value when not given.
name: the name of the member
start: the initial start value or None
count: the number of existing members
- last_value: the list of values assigned
+ last_values: the list of values assigned
"""
- if not last_value:
+ if not last_values:
return start
try:
- last = last_value[-1]
- last_value.sort()
- if last == last_value[-1]:
+ last = last_values[-1]
+ last_values.sort()
+ if last == last_values[-1]:
# no difference between old and new methods
return last + 1
else:
@@ -1233,7 +1233,7 @@ class Enum(metaclass=EnumType):
DeprecationWarning,
stacklevel=3,
)
- for v in last_value:
+ for v in last_values:
try:
return v + 1
except TypeError:
@@ -1389,7 +1389,7 @@ class Flag(Enum, boundary=STRICT):
name: the name of the member
start: the initial start value or None
count: the number of existing members
- last_value: the last value assigned or None
+ last_values: the last value assigned or None
"""
if not count:
return start if start is not None else 1