diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-30 18:52:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-30 18:52:29 (GMT) |
commit | a89d22aff3fb1e67f8f08eac22b08a58dfa048a8 (patch) | |
tree | 2324a9b41897d39e8b10e28f39a60ee5186c27fe /Misc | |
parent | d1af5effc214f474bcb1df62eb2089c48f657ee5 (diff) | |
download | cpython-a89d22aff3fb1e67f8f08eac22b08a58dfa048a8.zip cpython-a89d22aff3fb1e67f8f08eac22b08a58dfa048a8.tar.gz cpython-a89d22aff3fb1e67f8f08eac22b08a58dfa048a8.tar.bz2 |
Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar
file with compression before trying to open it without compression. Otherwise
it had 50% chance failed with ignore_zeros=True.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -113,6 +113,10 @@ Core and Builtins Library ------- +- Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar + file with compression before trying to open it without compression. Otherwise + it had 50% chance failed with ignore_zeros=True. + - Issue #23262: The webbrowser module now supports Firefox 36+ and derived browsers. Based on patch by Oleg Broytman. |