summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-02 11:52:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-02 11:52:36 (GMT)
commit43fb54cd4f27f9c27f114d7b6fb2e04b35441a92 (patch)
tree4a27f2149ef750c4cdfc68ab7ae314022977aa57 /Misc
parent56379c0d8fc17e717ac1ad73353b5991adae6832 (diff)
downloadcpython-43fb54cd4f27f9c27f114d7b6fb2e04b35441a92.zip
cpython-43fb54cd4f27f9c27f114d7b6fb2e04b35441a92.tar.gz
cpython-43fb54cd4f27f9c27f114d7b6fb2e04b35441a92.tar.bz2
Issue #10182: The re module doesn't truncate indices to 32 bits anymore.
Patch by Serhiy Storchaka.
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 d930f32..9d8db75 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -169,6 +169,9 @@ Core and Builtins
Library
-------
+- Issue #10182: The re module doesn't truncate indices to 32 bits anymore.
+ Patch by Serhiy Storchaka.
+
- Issue #16573: In 2to3, treat enumerate() like a consuming call, so superfluous
list() calls aren't added to filter(), map(), and zip() which are directly
passed enumerate().