From: Serhiy Storchaka Date: Fri, 27 Sep 2013 19:14:31 +0000 (+0300) Subject: Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty X-Git-Tag: v3.4.0a3~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab25c7c011fc5875f92ff351262ba7fa50ef1c8f;p=python Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty bytes until end of data. --- ab25c7c011fc5875f92ff351262ba7fa50ef1c8f diff --cc Misc/NEWS index 6239614bf3,6289eb254f..ae8631f06a --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -15,19 -18,63 +15,22 @@@ Core and Builtin Library ------- + - Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty + bytes until end of data. + -- Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. +- logging: added support for Unix domain sockets to SocketHandler and + DatagramHandler. + +- Issue #18996: TestCase.assertEqual() now more cleverly shorten differing + strings in error report. + +- Issue #19034: repr() for tkinter.Tcl_Obj now exposes string reperesentation. + +- Issue #18978: ``urllib.request.Request`` now allows the method to be + indicated on the class and no longer sets it to None in ``__init__``. + +- Issue #18626: the inspect module now offers a basic command line + introspection interface (Initial patch by Claudiu Popa) - Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command call returned empty string.