diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-02-26 04:21:50 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-02-26 04:21:50 (GMT) |
commit | d6e7e73ff869bf016ac69cc7569ba697089d1e94 (patch) | |
tree | ca648c2cd99566dc3e79a8f47e518e835d1fc3c6 /Lib/copy.py | |
parent | 4b92a825046ca5b4a4422e6a22ff9c5819eb4a52 (diff) | |
download | cpython-d6e7e73ff869bf016ac69cc7569ba697089d1e94.zip cpython-d6e7e73ff869bf016ac69cc7569ba697089d1e94.tar.gz cpython-d6e7e73ff869bf016ac69cc7569ba697089d1e94.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/copy.py')
-rw-r--r-- | Lib/copy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/copy.py b/Lib/copy.py index 9e60144..35c666f 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -102,7 +102,7 @@ def _copy_immutable(x): for t in (type(None), int, long, float, bool, str, tuple, frozenset, type, xrange, types.ClassType, types.BuiltinFunctionType, - types.FunctionType): + types.FunctionType): d[t] = _copy_immutable for name in ("ComplexType", "UnicodeType", "CodeType"): t = getattr(types, name, None) |