mirror of
https://github.com/python/cpython.git
synced 2025-12-09 18:48:05 +00:00
gh-93820: Fix copy() regression in enum.Flag (GH-93876)
GH-26658 introduced a regression in copy / pickle protocol for combined `enum.Flag`s. `copy.copy(re.A | re.I)` would fail with `AttributeError: ASCII|IGNORECASE`. `enum.Flag` now has a `__reduce_ex__()` method that reduces flags by combined value, not by combined name.
This commit is contained in:
parent
8ba1c7f720
commit
05b32c1c79
3 changed files with 33 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
import copy
|
||||
import enum
|
||||
import doctest
|
||||
import inspect
|
||||
|
|
@ -734,6 +735,13 @@ class _MinimalOutputTests:
|
|||
self.assertFormatIsValue('{:5.2}', TE.third)
|
||||
self.assertFormatIsValue('{:f}', TE.third)
|
||||
|
||||
def test_copy(self):
|
||||
TE = self.MainEnum
|
||||
copied = copy.copy(TE)
|
||||
self.assertEqual(copied, TE)
|
||||
deep = copy.deepcopy(TE)
|
||||
self.assertEqual(deep, TE)
|
||||
|
||||
|
||||
class _FlagTests:
|
||||
|
||||
|
|
@ -2654,6 +2662,26 @@ class TestSpecial(unittest.TestCase):
|
|||
self.assertTrue(isinstance(MyIntFlag.ONE | MyIntFlag.TWO, MyIntFlag), MyIntFlag.ONE | MyIntFlag.TWO)
|
||||
self.assertTrue(isinstance(MyIntFlag.ONE | 2, MyIntFlag))
|
||||
|
||||
def test_int_flags_copy(self):
|
||||
class MyIntFlag(IntFlag):
|
||||
ONE = 1
|
||||
TWO = 2
|
||||
FOUR = 4
|
||||
|
||||
flags = MyIntFlag.ONE | MyIntFlag.TWO
|
||||
copied = copy.copy(flags)
|
||||
deep = copy.deepcopy(flags)
|
||||
self.assertEqual(copied, flags)
|
||||
self.assertEqual(deep, flags)
|
||||
|
||||
flags = MyIntFlag.ONE | MyIntFlag.TWO | 8
|
||||
copied = copy.copy(flags)
|
||||
deep = copy.deepcopy(flags)
|
||||
self.assertEqual(copied, flags)
|
||||
self.assertEqual(deep, flags)
|
||||
self.assertEqual(copied.value, 1 | 2 | 8)
|
||||
|
||||
|
||||
class TestOrder(unittest.TestCase):
|
||||
"test usage of the `_order_` attribute"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue