From 265987c220fc5f89ca61bf229f6402b2cb81079a Mon Sep 17 00:00:00 2001 From: Ethan Furman Date: Wed, 22 Jun 2022 23:41:49 -0700 Subject: [PATCH] fix typo --- Lib/enum.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Lib/enum.py b/Lib/enum.py index 8d0982a218d766..a41422cc616962 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -1205,21 +1205,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: @@ -1233,7 +1233,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: @@ -1389,7 +1389,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