Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_io.py63 return f._CHUNK_SIZE
2300 f._CHUNK_SIZE = chunksize
2304 f._CHUNK_SIZE = chunksize
2392 f._CHUNK_SIZE # Just test that it exists
2393 f._CHUNK_SIZE = 2
2409 f._CHUNK_SIZE = CHUNK_SIZE
2537 txt._CHUNK_SIZE = 4
2549 txt._CHUNK_SIZE = 4
2560 txt._CHUNK_SIZE = 4
2568 txt._CHUNK_SIZE = 4
/external/python/cpython3/Lib/test/
Dtest_io.py80 return f._CHUNK_SIZE
2905 f._CHUNK_SIZE = chunksize
2909 f._CHUNK_SIZE = chunksize
2995 f._CHUNK_SIZE # Just test that it exists
2996 f._CHUNK_SIZE = 2
3012 f._CHUNK_SIZE = CHUNK_SIZE
3168 txt._CHUNK_SIZE = 4
3180 txt._CHUNK_SIZE = 4
3191 txt._CHUNK_SIZE = 4
3199 txt._CHUNK_SIZE = 4
[all …]
/external/python/cpython3/Lib/
D_pyio.py1995 _CHUNK_SIZE = 2048 variable in TextIOWrapper
2286 input_chunk = self.buffer.read1(self._CHUNK_SIZE)
2288 input_chunk = self.buffer.read(self._CHUNK_SIZE)
/external/python/cpython2/Lib/
D_pyio.py1480 _CHUNK_SIZE = 2048 variable in TextIOWrapper
1688 input_chunk = self.buffer.read1(self._CHUNK_SIZE)
/external/python/cpython3/Misc/
DHISTORY9387 - Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a