Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_bufio.py5 import _pyio as pyio # Python implementation. namespace
69 open = staticmethod(pyio.open)
Dtest_univnewlines.py10 import _pyio as pyio namespace
128 open = staticmethod(pyio.open)
Dtest_file.py13 import _pyio as pyio namespace
141 open = staticmethod(pyio.open)
324 open = staticmethod(pyio.open)
Dtest_memoryio.py13 import _pyio as pyio namespace
401 UnsupportedOperation = pyio.UnsupportedOperation
406 ioclass = pyio.BytesIO
633 ioclass = pyio.StringIO
634 UnsupportedOperation = pyio.UnsupportedOperation
652 UnsupportedOperation = pyio.UnsupportedOperation
655 class ioclass(pyio.StringIO):
657 return pickle.loads(pickle.dumps(pyio.StringIO(*args, **kwargs)))
Dtest_largefile.py13 import _pyio as pyio # Python implementation of io namespace
178 for _open, prefix in [(io.open, 'C'), (pyio.open, 'Py'),
Dtest_io.py44 import _pyio as pyio # Python implementation of io namespace
125 class PyMockRawIOWithoutRead(MockRawIOWithoutRead, pyio.RawIOBase):
142 class PyMockRawIO(MockRawIO, pyio.RawIOBase):
166 class PyMisbehavedRawIO(MisbehavedRawIO, pyio.RawIOBase):
181 class PyCloseFailureIO(CloseFailureIO, pyio.RawIOBase):
204 class PyMockFileIO(MockFileIO, pyio.BytesIO):
255 class PyMockNonBlockWriterIO(MockNonBlockWriterIO, pyio.RawIOBase):
256 BlockingIOError = pyio.BlockingIOError
1093 tp = pyio.BufferedReader
1403 tp = pyio.BufferedWriter
[all …]