From: Antoine Pitrou Date: Sun, 2 Dec 2012 11:55:12 +0000 (+0100) Subject: Issue #10182: The re module doesn't truncate indices to 32 bits anymore. X-Git-Tag: v3.4.0a1~1920 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d8d1a0ab78d6bc32940462620967c2334c569752;p=python Issue #10182: The re module doesn't truncate indices to 32 bits anymore. Patch by Serhiy Storchaka. --- d8d1a0ab78d6bc32940462620967c2334c569752 diff --cc Misc/NEWS index 3b38db7a98,bdfe16158b..e9eb774e9b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -145,9 -98,9 +145,12 @@@ Core and Builtin Library ------- + - Issue #10182: The re module doesn't truncate indices to 32 bits anymore. + Patch by Serhiy Storchaka. + +- Issue #16333: use (",", ": ") as default separator when indent is specified + to avoid trailing whitespace. 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().