Home | History | Annotate | Download | only in python2.7

Lines Matching refs:chunk

359         self.chunk_left = _UNKNOWN      # bytes left to read in current chunk
587 raise LineTooLong("chunk size")
590 line = line[:i] # strip chunk-extensions
608 self._safe_read(2) # toss the CRLF at the end of the chunk
615 # we read the whole chunk, get another
616 self._safe_read(2) # toss the CRLF at the end of the chunk
658 chunk = self.fp.read(min(amt, MAXAMOUNT))
659 if not chunk:
661 s.append(chunk)
662 amt -= len(chunk)