From: Serhiy Storchaka Date: Wed, 30 Jul 2014 15:34:01 +0000 (+0300) Subject: Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. X-Git-Tag: v3.5.0a1~1157 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f44611cadfa8f4f592a2b13d0dbffa84bccc4418;p=thirdparty%2FPython%2Fcpython.git Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. In particular this allows to initialize images from binary data. --- f44611cadfa8f4f592a2b13d0dbffa84bccc4418 diff --cc Misc/NEWS index 10879e94955d,b554afd4b5c4..0637c1f6bc6d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -113,17 -27,9 +113,20 @@@ Core and Builtin Library ------- + - Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. + In particular this allows to initialize images from binary data. + +- Issue #22003: When initialized from a bytes object, io.BytesIO() now + defers making a copy until it is mutated, improving performance and + memory use on some use cases. Patch by David Wilson. + +- Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets. + A side effect is that Python depends to the WinSock library. + +- Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get + and set the blocking mode of a file descriptor (False if the O_NONBLOCK flag + is set, True otherwise). These functions are not available on Windows. + - Issue #17172: Make turtledemo start as active on OS X even when run with subprocess. Patch by Lita Cho.