Skip to content

Commit 4c7c42b

Browse files
eendebakptvstinner
andauthored
Update Lib/copy.py
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 08f90f5 commit 4c7c42b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/copy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def deepcopy(x, memo=None):
162162
_keep_alive(x, memo) # Make sure x lives at least as long as d
163163
return y
164164

165-
_atomic_types = frozenset({types.NoneType, types.EllipsisType, types.NotImplementedType,
165+
_atomic_types = frozenset({types.NoneType, types.EllipsisType, types.NotImplementedType,
166166
int, float, bool, complex, bytes, str, types.CodeType, type, range,
167167
types.BuiltinFunctionType, types.FunctionType, weakref.ref, property})
168168

0 commit comments

Comments
 (0)