Home | History | Annotate | Download | only in Lib

Lines Matching defs:_safe_read

213 # maximal amount of data to read at one time in _safe_read
581 s = self._safe_read(self.length)
594 # we do not use _safe_read() here because this may be a .will_close
631 value.append(self._safe_read(chunk_left))
633 value.append(self._safe_read(amt))
637 value.append(self._safe_read(amt))
638 self._safe_read(2) # toss the CRLF at the end of the chunk
642 value.append(self._safe_read(chunk_left))
646 self._safe_read(2) # toss the CRLF at the end of the chunk
667 def _safe_read(self, amt):