diff options
author | Lars Gustäbel <lars@gustaebel.de> | 2015-07-02 19:42:09 +0200 |
---|---|---|
committer | Lars Gustäbel <lars@gustaebel.de> | 2015-07-02 19:42:09 +0200 |
commit | 60eaba04cdfe47eeac1163f40f750a6586714da9 (patch) | |
tree | 5a997fb24a6aa30859cfc2f482485b474993aa2a | |
parent | 63d80b71b3cc5a1180026a77e6329e0324974b3d (diff) | |
parent | 49c521fd5d3102916045551019368eae66dc7696 (diff) | |
download | cpython-git-60eaba04cdfe47eeac1163f40f750a6586714da9.tar.gz |
Merge with 3.5: Issue #24514: tarfile now tolerates number fields consisting of only whitespace.
-rwxr-xr-x | Lib/tarfile.py | 3 | ||||
-rw-r--r-- | Lib/test/test_tarfile.py | 4 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
3 files changed, 9 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py index bf2234f637..d1279d2bf5 100755 --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -178,7 +178,8 @@ def nti(s): n = -(256 ** (len(s) - 1) - n) else: try: - n = int(nts(s, "ascii", "strict") or "0", 8) + s = nts(s, "ascii", "strict") + n = int(s.strip() or "0", 8) except ValueError: raise InvalidHeaderError("invalid header") return n diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py index 66a0a61e09..0f03c739e2 100644 --- a/Lib/test/test_tarfile.py +++ b/Lib/test/test_tarfile.py @@ -1952,6 +1952,10 @@ class MiscTest(unittest.TestCase): self.assertEqual(tarfile.nti(b"\xff\x00\x00\x00\x00\x00\x00\x00"), -0x100000000000000) + # Issue 24514: Test if empty number fields are converted to zero. + self.assertEqual(tarfile.nti(b"\0"), 0) + self.assertEqual(tarfile.nti(b" \0"), 0) + def test_write_number_fields(self): self.assertEqual(tarfile.itn(1), b"0000001\x00") self.assertEqual(tarfile.itn(0o7777777), b"7777777\x00") @@ -52,6 +52,9 @@ Core and Builtins Library ------- +- Issue #24514: tarfile now tolerates number fields consisting of only + whitespace. + - Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree. A deprecation warning no longer issued by XMLParser subclass with default doctype() method. Direct call of doctype() now issues a warning. Parser's |