Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.11] [Enum] fix typo (GH-94158) #94177

Merged
merged 1 commit into from
Jun 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Lib/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -1218,21 +1218,21 @@ def __new__(cls, value):
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:
Expand All @@ -1246,7 +1246,7 @@ def _generate_next_value_(name, start, count, last_value):
DeprecationWarning,
stacklevel=3,
)
for v in last_value:
for v in last_values:
try:
return v + 1
except TypeError:
Expand Down Expand Up @@ -1402,7 +1402,7 @@ def _generate_next_value_(name, start, count, last_values):
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
Expand Down