summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authororenmn <orenmn@gmail.com>2017-03-09 19:29:22 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-03-09 19:29:22 (GMT)
commite2c88bdd6bb3efbc81389958d62daf6dd0d6eda7 (patch)
treef97ed0ed5c6110b91ec3aa5c81d9ff2f69090ffb /Misc/NEWS
parent5fad493dc6634635bc6ba951b39b4d1bf552ef84 (diff)
downloadcpython-e2c88bdd6bb3efbc81389958d62daf6dd0d6eda7.zip
cpython-e2c88bdd6bb3efbc81389958d62daf6dd0d6eda7.tar.gz
cpython-e2c88bdd6bb3efbc81389958d62daf6dd0d6eda7.tar.bz2
bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 42a3b02..df0975a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Extension Modules
Library
-------
+- bpo-28298: Fix a bug that prevented array 'Q', 'L' and 'I' from accepting big
+ intables (objects that have __int__) as elements. Patch by Oren Milman.
+
- bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (or any other
exception) to exception(s) raised in the dispatched methods.
Patch by Petr Motejlek.