mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
[3.11] gh-106602: [Enum] Add __copy__ and __deepcopy__ (GH-106694)
gh-106602: [Enum] Add __copy__ and __deepcopy__ (GH-106666)
(cherry picked from commit 357e9e9da3
)
Co-authored-by: Prince Roshan <princekrroshan01@gmail.com>
This commit is contained in:
parent
eac0616df9
commit
a276ce4505
3 changed files with 15 additions and 0 deletions
|
@ -775,9 +775,17 @@ class _MinimalOutputTests:
|
|||
TE = self.MainEnum
|
||||
copied = copy.copy(TE)
|
||||
self.assertEqual(copied, TE)
|
||||
self.assertIs(copied, TE)
|
||||
deep = copy.deepcopy(TE)
|
||||
self.assertEqual(deep, TE)
|
||||
self.assertIs(deep, TE)
|
||||
|
||||
def test_copy_member(self):
|
||||
TE = self.MainEnum
|
||||
copied = copy.copy(TE.first)
|
||||
self.assertIs(copied, TE.first)
|
||||
deep = copy.deepcopy(TE.first)
|
||||
self.assertIs(deep, TE.first)
|
||||
|
||||
class _FlagTests:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue