diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-03 07:14:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-03 07:14:36 (GMT) |
commit | f4adbae92738b96915664461fcc3be17e19eb674 (patch) | |
tree | 87c096e873b499206bd05fa7c92a6f3fa0cc0496 /Misc | |
parent | 4954f9fcab59e38f2229998b3276567d4bf92b53 (diff) | |
parent | 1ad088f3ea14f4b598040e1d266e2567aa260dea (diff) | |
download | cpython-f4adbae92738b96915664461fcc3be17e19eb674.zip cpython-f4adbae92738b96915664461fcc3be17e19eb674.tar.gz cpython-f4adbae92738b96915664461fcc3be17e19eb674.tar.bz2 |
Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects
returned by ZipFile.open() can now operate independently of the ZipFile even
if the ZipFile was created by passing in a file-like object as the first
argument to the constructor.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -194,6 +194,11 @@ Core and Builtins Library ------- +- Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects + returned by ZipFile.open() can now operate independently of the ZipFile even + if the ZipFile was created by passing in a file-like object as the first + argument to the constructor. + - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is asked to compile a source file containing multiple dots in the source file name. |