summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/tarfile.py2
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
index 55bb4e3..7a67e15 100644
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -1481,7 +1481,7 @@ class TarFile(object):
ignore_zeros = False # If true, skips empty or invalid blocks and
# continues processing.
- errorlevel = 0 # If 0, fatal errors only appear in debug
+ errorlevel = 1 # If 0, fatal errors only appear in debug
# messages (if debug >= 0). If > 0, errors
# are passed to the caller as exceptions.
diff --git a/Misc/NEWS b/Misc/NEWS
index d3b26a4..dee6df4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -157,6 +157,9 @@ C-API
Library
-------
+- Issue #7357: tarfile no longer suppresses fatal extraction errors by
+ default.
+
- Issue #5949: added check for correct lineends in input from IMAP server
in imaplib.