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 | dc9215f8828b23ed6c294f8e64342a55dcdf1e4c (patch) | |
tree | d4cc4203e175728a19a15e7f785a264297a6a883 /Misc | |
parent | 85736a7d2c4fcb0369becf59b143e5035a2adc23 (diff) | |
download | cpython-dc9215f8828b23ed6c294f8e64342a55dcdf1e4c.zip cpython-dc9215f8828b23ed6c294f8e64342a55dcdf1e4c.tar.gz cpython-dc9215f8828b23ed6c294f8e64342a55dcdf1e4c.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
@@ -14,6 +14,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 #19748: On AIX, time.mktime() now raises an OverflowError for year outsize range [1902; 2037]. |