diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-12-02 11:52:36 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-12-02 11:52:36 (GMT) |
commit | b83575b0a5a798301a85a602a8d888329da0cf88 (patch) | |
tree | 28e0145d0a58bb0c893421c95374c6c8c156259f /Misc | |
parent | 4fc00826024016f1a81ee4453902aa15e1a3ba75 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(). |