diff options
-rw-r--r-- | Lib/gzip.py | 2 | ||||
-rw-r--r-- | Lib/test/test_gzip.py | 6 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/Lib/gzip.py b/Lib/gzip.py index 21b1404..ba2149e 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py @@ -98,7 +98,7 @@ class _PaddedFile: return self.file.seek(offset, whence) def __getattr__(self, name): - return getattr(name, self.file) + return getattr(self.file, name) class GzipFile(io.BufferedIOBase): diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py index 7f2e798..8af6d2b 100644 --- a/Lib/test/test_gzip.py +++ b/Lib/test/test_gzip.py @@ -197,6 +197,12 @@ class TestGzip(unittest.TestCase): self.assertTrue(hasattr(f, "name")) self.assertEqual(f.name, self.filename) + def test_paddedfile_getattr(self): + self.test_write() + with gzip.GzipFile(self.filename, 'rb') as f: + self.assertTrue(hasattr(f.fileobj, "name")) + self.assertEqual(f.fileobj.name, self.filename) + def test_mtime(self): mtime = 123456789 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite: @@ -117,6 +117,8 @@ Core and Builtins Library ------- +- Issue #10465: fix broken delegating of attributes by gzip._PaddedFile. + - Issue #10356: hash(Decimal("sNaN")) now raises ValueError instead of TypeError. |