summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2016-08-07 15:52:26 (GMT)
committerGregory P. Smith <greg@krypto.org>2016-08-07 15:52:26 (GMT)
commit9854789efec0c707fff871b32b2833f32b078fb3 (patch)
tree7f659a7f58967939c1347560716b722d01493035 /Misc
parentabfe28b01282d5f7c79b2e3cfb33ea29f9f3656f (diff)
downloadcpython-9854789efec0c707fff871b32b2833f32b078fb3.zip
cpython-9854789efec0c707fff871b32b2833f32b078fb3.tar.gz
cpython-9854789efec0c707fff871b32b2833f32b078fb3.tar.bz2
Issue #26750: unittest.mock.create_autospec() now works properly
for subclasses of property() and other data descriptors.
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 cdbb1a4..e6548c2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #26750: unittest.mock.create_autospec() now works properly for
+ subclasses of property() and other data descriptors.
+
- Issue #27568: Prevent HTTPoxy attack (CVE-2016-1000110). Ignore the
HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates
that the script is in CGI mode.