Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion 7 Lib/copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def copy(x):


_copy_atomic_types = frozenset({types.NoneType, int, float, bool, complex, str, tuple,
bytes, frozenset, type, range, slice, property,
bytes, frozendict, frozenset, type, range, slice, property,
types.BuiltinFunctionType, types.EllipsisType,
types.NotImplementedType, types.FunctionType, types.CodeType,
weakref.ref, super})
Expand Down Expand Up @@ -203,6 +203,11 @@ def _deepcopy_dict(x, memo, deepcopy=deepcopy):
return y
d[dict] = _deepcopy_dict

def _deepcopy_frozendict(x, memo, deepcopy=deepcopy):
y = _deepcopy_dict(x, memo, deepcopy)
return frozendict(y)
d[frozendict] = _deepcopy_frozendict

def _deepcopy_method(x, memo): # Copy instance methods
return type(x)(x.__func__, deepcopy(x.__self__, memo))
d[types.MethodType] = _deepcopy_method
Expand Down
13 changes: 13 additions & 0 deletions 13 Lib/test/test_copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ def test_copy_dict(self):
self.assertEqual(y, x)
self.assertIsNot(y, x)

def test_copy_frozendict(self):
x = frozendict(x=1, y=2)
self.assertIs(copy.copy(x), x)
x = frozendict()
self.assertIs(copy.copy(x), x)

def test_copy_set(self):
x = {1, 2, 3}
y = copy.copy(x)
Expand Down Expand Up @@ -419,6 +425,13 @@ def test_deepcopy_dict(self):
self.assertIsNot(x, y)
self.assertIsNot(x["foo"], y["foo"])

def test_deepcopy_frozendict(self):
x = frozendict({"foo": [1, 2], "bar": 3})
y = copy.deepcopy(x)
self.assertEqual(y, x)
self.assertIsNot(x, y)
self.assertIsNot(x["foo"], y["foo"])

@support.skip_emscripten_stack_overflow()
@support.skip_wasi_stack_overflow()
def test_deepcopy_reflexive_dict(self):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The :mod:`copy` module now supports the :class:`frozendict` type. Patch by
Pieter Eendebak based on work by Victor Stinner.
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.