Issue #1441530: In imaplib, read the data in one chunk to speed up large

reads and simplify code.
This commit is contained in:
Charles-François Natali 2011-05-24 23:47:49 +02:00
parent 17dc81951a
commit 1f4560c872
2 changed files with 4 additions and 9 deletions

View File

@ -249,15 +249,7 @@ class IMAP4:
def read(self, size):
"""Read 'size' bytes from remote."""
chunks = []
read = 0
while read < size:
data = self.file.read(min(size-read, 4096))
if not data:
break
read += len(data)
chunks.append(data)
return b''.join(chunks)
return self.file.read(size)
def readline(self):

View File

@ -161,6 +161,9 @@ Core and Builtins
Library
-------
- Issue #1441530: In imaplib, read the data in one chunk to speed up large
reads and simplify code.
- Issue #12070: Fix the Makefile parser of the sysconfig module to handle
correctly references to "bogus variable" (e.g. "prefix=$/opt/python").