]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-100815: Normalize `types` module usage in `copy` module (#100816)
authorNikita Sobolev <mail@sobolevn.me>
Sat, 7 Jan 2023 21:29:53 +0000 (00:29 +0300)
committerGitHub <noreply@github.com>
Sat, 7 Jan 2023 21:29:53 +0000 (21:29 +0000)
Lib/copy.py

index 6e8c19bc652d126014d3e2e9d2d54059ad742387..da2908ef623d8c9cfc7a10fbf491d69c914b116e 100644 (file)
@@ -101,13 +101,11 @@ _copy_dispatch = d = {}
 
 def _copy_immutable(x):
     return x
-for t in (type(None), int, float, bool, complex, str, tuple,
+for t in (types.NoneType, int, float, bool, complex, str, tuple,
           bytes, frozenset, type, range, slice, property,
-          types.BuiltinFunctionType, type(Ellipsis), type(NotImplemented),
-          types.FunctionType, weakref.ref):
-    d[t] = _copy_immutable
-t = getattr(types, "CodeType", None)
-if t is not None:
+          types.BuiltinFunctionType, types.EllipsisType,
+          types.NotImplementedType, types.FunctionType, types.CodeType,
+          weakref.ref):
     d[t] = _copy_immutable
 
 d[list] = list.copy
@@ -173,9 +171,9 @@ _deepcopy_dispatch = d = {}
 
 def _deepcopy_atomic(x, memo):
     return x
-d[type(None)] = _deepcopy_atomic
-d[type(Ellipsis)] = _deepcopy_atomic
-d[type(NotImplemented)] = _deepcopy_atomic
+d[types.NoneType] = _deepcopy_atomic
+d[types.EllipsisType] = _deepcopy_atomic
+d[types.NotImplementedType] = _deepcopy_atomic
 d[int] = _deepcopy_atomic
 d[float] = _deepcopy_atomic
 d[bool] = _deepcopy_atomic