From: Serhiy Storchaka Date: Sun, 1 Jan 2017 17:05:29 +0000 (+0200) Subject: Issue #29094: Offsets in a ZIP file created with extern file object and modes X-Git-Tag: v3.6.1rc1~229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e465a9af8e87aa2c4c20dfaa23b310827c2ec345;p=python Issue #29094: Offsets in a ZIP file created with extern file object and modes "w" and "x" now are relative to the start of the file. --- e465a9af8e87aa2c4c20dfaa23b310827c2ec345 diff --cc Misc/NEWS index b1b3c69681,ad67b1da62..a8d4ee8d21 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -40,14 -140,9 +40,17 @@@ Core and Builtin Library ------- + - Issue #29094: Offsets in a ZIP file created with extern file object and modes + "w" and "x" now are relative to the start of the file. + +- Issue #29085: Allow random.Random.seed() to use high quality OS randomness + rather than the pid and time. + +- Issue #29061: Fixed bug in secrets.randbelow() which would hang when given + a negative input. Patch by Brendan Donegan. + +- Issue #29079: Prevent infinite loop in pathlib.resolve() on Windows + - Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. Based on patch by Tycho Andersen.