HomeSort by relevance Sort by last modified time
    Searched refs:readinto1 (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Modules/_io/
bufferedio.c 45 _Py_IDENTIFIER(readinto1); variable
69 _bufferediobase_readinto_generic(PyObject *self, Py_buffer *buffer, char readinto1)
75 readinto1 ? &PyId_read1 : &PyId_read,
116 _io._BufferedIOBase.readinto1
990 _buffered_readinto_generic(buffered *self, Py_buffer *buffer, char readinto1)
1032 /* In readinto1 mode, we do not want to fill the internal
1034 else if (!(readinto1 && written)) {
1058 /* At most one read in readinto1 mode */
1059 if (readinto1) {
1085 _io._Buffered.readinto1
    [all...]
  /external/python/cpython3/Lib/
_pyio.py 678 def readinto1(self, b): member in class:BufferedIOBase
1290 def readinto1(self, b): member in class:BufferedRWPair
1377 def readinto1(self, b): member in class:BufferedRandom
    [all...]
  /external/python/cpython3/Lib/test/
test_io.py 345 self.assertEqual(f.readinto1(data), 5)
860 for method in ("readinto", "readinto1"):
    [all...]

Completed in 121 milliseconds