Commit b69b2e59 authored by Neal Norwitz's avatar Neal Norwitz

Remove duplicate refs to int from int/long unification presumably. (There...

Remove duplicate refs to int from int/long unification presumably.  (There might be more refs like these.)
parent ba7bf49a
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment