Remove duplicate refs to int from int/long unification presumably. (There might be more refs like these.)

This commit is contained in:
Neal Norwitz 2007-02-27 03:41:04 +00:00
parent ba7bf49a54
commit b69b2e59f6
1 changed files with 1 additions and 2 deletions

View File

@ -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: