Lines Matching refs:readinto
627 # The read() method is implemented by calling readinto(); derived
629 # readinto() as a primitive operation. In general, readinto() can be
633 # readinto() in terms of read(), in case the latter is a more suitable
648 n = self.readinto(b)
668 def readinto(self, b):
674 self._unsupported("readinto")
695 implementation that defers to readinto().
697 In addition, read(), readinto() and write() may raise
732 def readinto(self, b):
800 does *not* provide implementations of read(), readinto() or
1175 # Implementing readinto() and readinto1() is not strictly necessary (we
1209 n = self.raw.readinto(buf[written:])
1379 def readinto(self, b):
1380 return self.reader.readinto(b)
1466 def readinto(self, b):
1468 return BufferedReader.readinto(self, b)
1704 def readinto(self, b):
1705 """Same as RawIOBase.readinto()."""