| commit | b807577da257ba2475abe955120fb7bdf739875c | [log] [tgz] |
|---|---|---|
| author | Antoine Pitrou <solipsis@pitrou.net> | Thu Feb 27 22:14:31 2014 +0100 |
| committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Feb 27 22:14:31 2014 +0100 |
| tree | af84ab4998c5cee765c282f3b0ee04e0ad88b61b | |
| parent | 3673670b675d8a686686a449a0a9a551f53dfee7 [diff] [blame] |
Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes object. Initial patch by Peter Otten.
diff --git a/Lib/copy.py b/Lib/copy.py index d26bcdb..bb8840e 100644 --- a/Lib/copy.py +++ b/Lib/copy.py
@@ -110,7 +110,7 @@ def _copy_immutable(x): return x for t in (type(None), int, float, bool, str, tuple, - frozenset, type, range, + bytes, frozenset, type, range, types.BuiltinFunctionType, type(Ellipsis), types.FunctionType, weakref.ref): d[t] = _copy_immutable