diff options
author | Anthony Sottile <asottile@umich.edu> | 2021-04-27 17:39:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 17:39:01 (GMT) |
commit | 9aea31deddf7458be3546f72185740f3cd06687f (patch) | |
tree | af1d9b0bd0091d8b50098ec3896151564e31818f /Misc | |
parent | 8a37463989410a79f6d1131d08dc0165bcaa0f9d (diff) | |
download | cpython-9aea31deddf7458be3546f72185740f3cd06687f.zip cpython-9aea31deddf7458be3546f72185740f3cd06687f.tar.gz cpython-9aea31deddf7458be3546f72185740f3cd06687f.tar.bz2 |
bpo-8978: improve tarfile.open error message when lzma / bz2 are missing (GH-24850)
Automerge-Triggered-By: GH:pablogsal
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-03-13-14-02-07.bpo-8978.CRxG-O.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-03-13-14-02-07.bpo-8978.CRxG-O.rst b/Misc/NEWS.d/next/Library/2021-03-13-14-02-07.bpo-8978.CRxG-O.rst new file mode 100644 index 0000000..2da8874 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-03-13-14-02-07.bpo-8978.CRxG-O.rst @@ -0,0 +1,2 @@ +Improve error message for :func:`tarfile.open` when :mod:`lzma` / :mod:`bz2` +are unavailable. Patch by Anthony Sottile. |