Whitespace normalization.

This commit is contained in:
Tim Peters 2005-12-25 23:18:31 +00:00
parent 83a8c393b0
commit 536cf99536
82 changed files with 33875 additions and 33923 deletions

View file

@ -269,7 +269,7 @@ class StreamReader(Codec):
if self.linebuffer:
self.charbuffer = "".join(self.linebuffer)
self.linebuffer = None
# read until we get the required number of characters (if available)
while True:
# can the request can be satisfied from the character buffer?
@ -335,7 +335,7 @@ class StreamReader(Codec):
if not keepends:
line = line.splitlines(False)[0]
return line
readsize = size or 72
line = ""
# If size is given, we call read() only once