summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2021-02-26 11:09:06 +0900
committerGitHub <noreply@github.com>2021-02-26 11:09:06 +0900
commit9525a18b5bb317d9fb206c992ab62aa41559b0c8 (patch)
tree6371d92749bdafd9fbc63493a6ef8cb6b08083f8
parent3150754f91fc1d15e3888e22c065672838a9c069 (diff)
downloadcpython-git-9525a18b5bb317d9fb206c992ab62aa41559b0c8.tar.gz
bpo-43316: gzip: Fix sys.exit() usage. (GH-24652)
-rw-r--r--Lib/gzip.py2
-rw-r--r--Lib/test/test_gzip.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/gzip.py b/Lib/gzip.py
index 8002b43bde..ee0cbed8f5 100644
--- a/Lib/gzip.py
+++ b/Lib/gzip.py
@@ -583,7 +583,7 @@ def main():
g = sys.stdout.buffer
else:
if arg[-3:] != ".gz":
- sys.exit("filename doesn't end in .gz:", repr(arg))
+ sys.exit(f"filename doesn't end in .gz: {arg!r}")
f = open(arg, "rb")
g = builtins.open(arg[:-3], "wb")
else:
diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py
index 1bb8f7a2d3..1dcfa2b628 100644
--- a/Lib/test/test_gzip.py
+++ b/Lib/test/test_gzip.py
@@ -775,7 +775,7 @@ class TestCommandLine(unittest.TestCase):
def test_decompress_infile_outfile_error(self):
rc, out, err = assert_python_failure('-m', 'gzip', '-d', 'thisisatest.out')
- self.assertIn(b"filename doesn't end in .gz:", err)
+ self.assertEqual(b"filename doesn't end in .gz: 'thisisatest.out'", err.strip())
self.assertEqual(rc, 1)
self.assertEqual(out, b'')