Show More
@@ -542,7 +542,11 b' class HTTPResponse(httplib.HTTPResponse)' | |||
|
542 | 542 | return line |
|
543 | 543 | |
|
544 | 544 | # No newline in local buffer. Read until we find one. |
|
545 | # readinto read via readinto will already return _rbuf | |
|
546 | if self._raw_readinto is None: | |
|
545 | 547 | chunks = [self._rbuf] |
|
548 | else: | |
|
549 | chunks = [] | |
|
546 | 550 | i = -1 |
|
547 | 551 | readsize = self._rbufsize |
|
548 | 552 | while True: |
General Comments 0
You need to be logged in to leave comments.
Login now