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 | 43fb54cd4f27f9c27f114d7b6fb2e04b35441a92 (patch) | |
tree | 4a27f2149ef750c4cdfc68ab7ae314022977aa57 /Misc | |
parent | 56379c0d8fc17e717ac1ad73353b5991adae6832 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(). |