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

Lines Matching defs:_safe_read

212 # maximal amount of data to read at one time in _safe_read
551 s = self._safe_read(self.length)
564 # we do not use _safe_read() here because this may be a .will_close
601 value.append(self._safe_read(chunk_left))
603 value.append(self._safe_read(amt))
607 value.append(self._safe_read(amt))
608 self._safe_read(2) # toss the CRLF at the end of the chunk
612 value.append(self._safe_read(chunk_left))
616 self._safe_read(2) # toss the CRLF at the end of the chunk
637 def _safe_read(self, amt):