summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-02-27 21:14:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-02-27 21:14:31 (GMT)
commitdc9215f8828b23ed6c294f8e64342a55dcdf1e4c (patch)
treed4cc4203e175728a19a15e7f785a264297a6a883 /Misc
parent85736a7d2c4fcb0369becf59b143e5035a2adc23 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d58d17b..77b969c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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].