def __init__(self, *args, **kwds):
pass
- def _generate_next_value_(name, start, count, last_values):
+ def _generate_next_value_(name, start, count, last_value):
"""
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 last value assigned or None
+ last_value: the list of values assigned
"""
- for last_value in reversed(last_values):
- try:
- return last_value + 1
- except TypeError:
- pass
- else:
+ if not last_value:
+ return start
+ try:
+ last = last_value[-1]
+ last_value.sort()
+ if last == last_value[-1]:
+ # no difference between old and new methods
+ return last + 1
+ else:
+ # trigger old method (with warning)
+ raise TypeError
+ except TypeError:
+ import warnings
+ warnings.warn(
+ "In 3.13 the default `auto()`/`_generate_next_value_` will require all values to be sortable and support adding +1\n"
+ "and the value returned will be the largest value in the enum incremented by 1",
+ DeprecationWarning,
+ stacklevel=3,
+ )
+ for v in last_value:
+ try:
+ return v + 1
+ except TypeError:
+ pass
return start
@classmethod
self.assertEqual(Color.blue.value, 'blue')
self.assertEqual(Color.green.value, 'green')
- def test_auto_garbage(self):
- class Color(Enum):
- red = 'red'
- blue = auto()
+ @unittest.skipIf(
+ python_version >= (3, 13),
+ 'mixed types with auto() no longer supported',
+ )
+ def test_auto_garbage_ok(self):
+ with self.assertWarnsRegex(DeprecationWarning, 'will require all values to be sortable'):
+ class Color(Enum):
+ red = 'red'
+ blue = auto()
self.assertEqual(Color.blue.value, 1)
- def test_auto_garbage_corrected(self):
- class Color(Enum):
- red = 'red'
- blue = 2
- green = auto()
+ @unittest.skipIf(
+ python_version >= (3, 13),
+ 'mixed types with auto() no longer supported',
+ )
+ def test_auto_garbage_corrected_ok(self):
+ with self.assertWarnsRegex(DeprecationWarning, 'will require all values to be sortable'):
+ class Color(Enum):
+ red = 'red'
+ blue = 2
+ green = auto()
self.assertEqual(list(Color), [Color.red, Color.blue, Color.green])
self.assertEqual(Color.red.value, 'red')
self.assertEqual(Color.blue.value, 2)
self.assertEqual(Color.green.value, 3)
+ @unittest.skipIf(
+ python_version < (3, 13),
+ 'mixed types with auto() will raise in 3.13',
+ )
+ def test_auto_garbage_fail(self):
+ with self.assertRaisesRegex(TypeError, 'will require all values to be sortable'):
+ class Color(Enum):
+ red = 'red'
+ blue = auto()
+
+ @unittest.skipIf(
+ python_version < (3, 13),
+ 'mixed types with auto() will raise in 3.13',
+ )
+ def test_auto_garbage_corrected_fail(self):
+ with self.assertRaisesRegex(TypeError, 'will require all values to be sortable'):
+ class Color(Enum):
+ red = 'red'
+ blue = 2
+ green = auto()
+
def test_auto_order(self):
with self.assertRaises(TypeError):
class Color(Enum):
self.assertEqual(Color.red.value, 'pathological case')
self.assertEqual(Color.blue.value, 'blue')
+ @unittest.skipIf(
+ python_version < (3, 13),
+ 'auto() will return highest value + 1 in 3.13',
+ )
+ def test_auto_with_aliases(self):
+ class Color(Enum):
+ red = auto()
+ blue = auto()
+ oxford = blue
+ crimson = red
+ green = auto()
+ self.assertIs(Color.crimson, Color.red)
+ self.assertIs(Color.oxford, Color.blue)
+ self.assertIsNot(Color.green, Color.red)
+ self.assertIsNot(Color.green, Color.blue)
+
def test_duplicate_auto(self):
class Dupes(Enum):
first = primero = auto()