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)
commitb83575b0a5a798301a85a602a8d888329da0cf88 (patch)
tree28e0145d0a58bb0c893421c95374c6c8c156259f /Misc
parent4fc00826024016f1a81ee4453902aa15e1a3ba75 (diff)
downloadcpython-b83575b0a5a798301a85a602a8d888329da0cf88.zip
cpython-b83575b0a5a798301a85a602a8d888329da0cf88.tar.gz
cpython-b83575b0a5a798301a85a602a8d888329da0cf88.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 89f7e22..3d49637 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -154,6 +154,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().