Lines Matching refs:_limit
406 self._limit = limit
427 if self._limit != _DEFAULT_LIMIT:
428 info.append(f'limit={self._limit}')
464 if self._paused and len(self._buffer) <= self._limit:
487 len(self._buffer) > 2 * self._limit):
515 # This is essential for readexactly(n) for case when n > self._limit.
622 if offset > self._limit:
639 if isep > self._limit:
680 # bytes. So just call self.read(self._limit) until EOF.
683 block = await self.read(self._limit)