Home
last modified time | relevance | path

Searched refs:PyRawIOBase_Type (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Modules/_io/
D_iomodule.c681 ADD_TYPE(&PyRawIOBase_Type, "_RawIOBase"); in PyInit__io()
687 PyFileIO_Type.tp_base = &PyRawIOBase_Type; in PyInit__io()
702 PyWindowsConsoleIO_Type.tp_base = &PyRawIOBase_Type; in PyInit__io()
D_iomodule.h7 extern PyTypeObject PyRawIOBase_Type;
Diobase.c1016 PyTypeObject PyRawIOBase_Type = { variable
Dfileio.c147 res = _PyObject_CallMethodIdObjArgs((PyObject*)&PyRawIOBase_Type, in _io_FileIO_close_impl()
Dwinconsoleio.c206 res = _PyObject_CallMethodIdObjArgs((PyObject*)&PyRawIOBase_Type, in _io__WindowsConsoleIO_close_impl()
/external/python/cpython2/Modules/_io/
D_iomodule.h7 extern PyTypeObject PyRawIOBase_Type;
D_iomodule.c676 ADD_TYPE(&PyRawIOBase_Type, "_RawIOBase"); in init_io()
682 PyFileIO_Type.tp_base = &PyRawIOBase_Type; in init_io()
Diobase.c901 PyTypeObject PyRawIOBase_Type = { variable
Dfileio.c108 res = PyObject_CallMethod((PyObject*)&PyRawIOBase_Type, in fileio_close()