diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-02-27 21:14:31 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-02-27 21:14:31 (GMT) |
commit | b807577da257ba2475abe955120fb7bdf739875c (patch) | |
tree | af84ab4998c5cee765c282f3b0ee04e0ad88b61b /Misc | |
parent | 3673670b675d8a686686a449a0a9a551f53dfee7 (diff) | |
download | cpython-b807577da257ba2475abe955120fb7bdf739875c.zip cpython-b807577da257ba2475abe955120fb7bdf739875c.tar.gz cpython-b807577da257ba2475abe955120fb7bdf739875c.tar.bz2 |
Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes object. Initial patch by Peter Otten.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,9 @@ Core and Builtins Library ------- +- Issue #20791: copy.copy() now doesn't make a copy when the input is + a bytes object. Initial patch by Peter Otten. + - Issue #20621: Fixes a zipimport bug introduced in 3.3.4 that could cause spurious crashes or SystemErrors when importing modules or packages from a zip file. The change causing the problem was reverted. |