From: Serhiy Storchaka Date: Sun, 6 Mar 2016 07:17:39 +0000 (+0200) Subject: Issue #26475: Fixed debugging output for regular expressions with the (?x) flag. X-Git-Tag: v3.6.0a1~528 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6bfce6c0b4721700241b550e31ae3aeabcb6f41;p=thirdparty%2FPython%2Fcpython.git Issue #26475: Fixed debugging output for regular expressions with the (?x) flag. --- b6bfce6c0b4721700241b550e31ae3aeabcb6f41 diff --cc Misc/NEWS index 4ce8bf6d0321,fd9a4d6cdb12..8cae4f40b02a --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -201,11 -90,10 +201,14 @@@ Core and Builtin Library ------- + - Issue #26475: Fixed debugging output for regular expressions with the (?x) + flag. + +- Issue #26482: Allowed pickling recursive dequeues. + +- Issue #26335: Make mmap.write() return the number of bytes written like + other write methods. Patch by Jakub Stasiak. + - Issue #26457: Fixed the subnets() methods in IP network classes for the case when resulting prefix length is equal to maximal prefix length. Based on patch by Xiang Zhang.