From b69b2e59f69def8fa90ab762ec6b116d0a0e0a29 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 27 Feb 2007 03:41:04 +0000 Subject: Remove duplicate refs to int from int/long unification presumably. (There might be more refs like these.) --- Lib/copy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/copy.py b/Lib/copy.py index 9bc794a..e47f03e 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -99,7 +99,7 @@ _copy_dispatch = d = {} def _copy_immutable(x): return x -for t in (type(None), int, int, float, bool, str, tuple, +for t in (type(None), int, float, bool, str, tuple, frozenset, type, xrange, types.ClassType, types.BuiltinFunctionType, types.FunctionType): @@ -178,7 +178,6 @@ def _deepcopy_atomic(x, memo): return x d[type(None)] = _deepcopy_atomic d[int] = _deepcopy_atomic -d[int] = _deepcopy_atomic d[float] = _deepcopy_atomic d[bool] = _deepcopy_atomic try: -- cgit v0.12