Issue #20875: Merge from 3.3
This commit is contained in:
commit
e5127299c8
@ -96,7 +96,7 @@ class _PaddedFile:
|
|||||||
self._read -= len(prepend)
|
self._read -= len(prepend)
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
self._buffer = self._buffer[read:] + prepend
|
self._buffer = self._buffer[self._read:] + prepend
|
||||||
self._length = len(self._buffer)
|
self._length = len(self._buffer)
|
||||||
self._read = 0
|
self._read = 0
|
||||||
|
|
||||||
|
@ -421,6 +421,13 @@ class TestGzip(BaseTest):
|
|||||||
with gzip.GzipFile(fileobj=io.BytesIO(gzdata)) as f:
|
with gzip.GzipFile(fileobj=io.BytesIO(gzdata)) as f:
|
||||||
self.assertEqual(f.read(), b'Test')
|
self.assertEqual(f.read(), b'Test')
|
||||||
|
|
||||||
|
def test_prepend_error(self):
|
||||||
|
# See issue #20875
|
||||||
|
with gzip.open(self.filename, "wb") as f:
|
||||||
|
f.write(data1)
|
||||||
|
with gzip.open(self.filename, "rb") as f:
|
||||||
|
f.fileobj.prepend()
|
||||||
|
|
||||||
class TestOpen(BaseTest):
|
class TestOpen(BaseTest):
|
||||||
def test_binary_modes(self):
|
def test_binary_modes(self):
|
||||||
uncompressed = data1 * 50
|
uncompressed = data1 * 50
|
||||||
|
@ -20,6 +20,9 @@ Core and Builtins
|
|||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #20875: Prevent possible gzip "'read' is not defined" NameError.
|
||||||
|
Patch by Claudiu Popa.
|
||||||
|
|
||||||
- Issue #11558: ``email.message.Message.attach`` now returns a more
|
- Issue #11558: ``email.message.Message.attach`` now returns a more
|
||||||
useful error message if ``attach`` is called on a message for which
|
useful error message if ``attach`` is called on a message for which
|
||||||
``is_multipart`` is False.
|
``is_multipart`` is False.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user