diff options
author | Walter Dörwald <walter@livinglogic.de> | 2006-03-06 22:39:12 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2006-03-06 22:39:12 (GMT) |
commit | ca199432c23fa00ab3702e64a136c377950e5068 (patch) | |
tree | d46c22940fbd7bca5c5913cdda3f501ce26ffb37 /Lib/codecs.py | |
parent | f8d767198f11ab1011164d907de8332138162d94 (diff) | |
download | cpython-ca199432c23fa00ab3702e64a136c377950e5068.zip cpython-ca199432c23fa00ab3702e64a136c377950e5068.tar.gz cpython-ca199432c23fa00ab3702e64a136c377950e5068.tar.bz2 |
If size is specified, try to read at least size characters.
This is a alternative version of patch #1379332.
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r-- | Lib/codecs.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index 932f01b..6895a22 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -274,7 +274,10 @@ class StreamReader(Codec): while True: # can the request can be satisfied from the character buffer? if chars < 0: - if self.charbuffer: + if size < 0: + if self.charbuffer: + break + elif len(self.charbuffer) >= size: break else: if len(self.charbuffer) >= chars: |