Home
last modified time | relevance | path

Searched refs:_safe_read (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Lib/
Dhttplib.py581 s = self._safe_read(self.length)
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): member in HTTPResponse