From: Serhiy Storchaka Date: Sat, 18 Jun 2016 19:09:30 +0000 (+0300) Subject: Issue #27294: Numerical state in the repr for Tkinter event objects is now X-Git-Tag: v3.6.0a3~114 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f81a266df9cd85396c5745ef0e6157261107381f;p=python Issue #27294: Numerical state in the repr for Tkinter event objects is now represented as a compination of known flags. --- f81a266df9cd85396c5745ef0e6157261107381f diff --cc Misc/NEWS index 63e87b21d8,49304ba38e..11b4139994 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,12 -13,8 +10,14 @@@ What's New in Python 3.6.0 alpha Library ------- + - Issue #27079: Fixed curses.ascii functions isblank(), iscntrl() and ispunct(). + +- Issue #27294: Numerical state in the repr for Tkinter event objects is now + represented as a compination of known flags. + +- Issue #27177: Match objects in the re module now support index-like objects + as group indices. Based on patches by Jeroen Demeyer and Xiang Zhang. + - Issue #26754: Some functions (compile() etc) accepted a filename argument encoded as an iterable of integers. Now only strings and byte-like objects are accepted.