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

Lines Matching full:nbytes

657             nbytes = n - len_readbuffer - len(self._unconsumed)
658 nbytes = max(nbytes, self.MIN_READ_SIZE)
659 nbytes = min(nbytes, self._compress_left)
661 data = self._fileobj.read(nbytes)