[Python-checkins] [Enum] fix typo (GH-94158)

miss-islington webhook-mailer at python.org
Thu Jun 23 11:14:55 EDT 2022


https://github.com/python/cpython/commit/96a76141d52755ffda54fefc3c2c8da49e895e80
commit: 96a76141d52755ffda54fefc3c2c8da49e895e80
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022年06月23日T08:14:45-07:00
summary:
[Enum] fix typo (GH-94158)
(cherry picked from commit b4e0d6124a848a22df1ba12891329242c9e96f11)
Co-authored-by: Ethan Furman <ethan at stoneleaf.us>
files:
M Lib/enum.py
diff --git a/Lib/enum.py b/Lib/enum.py
index 747a5578773fc..d9efd0ec15ba7 100644
--- a/Lib/enum.py
+++ b/Lib/enum.py
@@ -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:
@@ -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:
@@ -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


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /