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

Lines Matching full:readinto

266     Even though IOBase does not declare read, readinto, or write because
273 readinto) needed. Text I/O classes work with str data.
531 # The read() method is implemented by calling readinto(); derived
533 # readinto() as a primitive operation. In general, readinto() can be
537 # readinto() in terms of read(), in case the latter is a more suitable
552 n = self.readinto(b)
572 def readinto(self, b):
578 self._unsupported("readinto")
598 implementation that defers to readinto().
600 In addition, read(), readinto() and write() may raise
633 def readinto(self, b):
684 does *not* provide implementations of read(), readinto() or
1190 def readinto(self, b):
1191 return self.reader.readinto(b)
1275 def readinto(self, b):
1277 return BufferedReader.readinto(self, b)
1301 I/O. There is no readinto method because Python's character strings