Home
last modified time | relevance | path

Searched refs:PyWindowsConsoleIO_Type (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Modules/_io/
D_iomodule.c382 RawIO_class = (PyObject *)&PyWindowsConsoleIO_Type; in _io_open_impl()
733 PyWindowsConsoleIO_Type.tp_base = &PyRawIOBase_Type; in PyInit__io()
734 ADD_TYPE(&PyWindowsConsoleIO_Type, "_WindowsConsoleIO"); in PyInit__io()
D_iomodule.h24 extern PyTypeObject PyWindowsConsoleIO_Type;
Dwinconsoleio.c160 PyTypeObject PyWindowsConsoleIO_Type; variable
1115 PyTypeObject PyWindowsConsoleIO_Type = { variable
1167 PyObject * _PyWindowsConsoleIO_Type = (PyObject*)&PyWindowsConsoleIO_Type;
/external/python/cpython3/Python/
Dpylifecycle.c45 extern PyTypeObject PyWindowsConsoleIO_Type;
46 #define PyWindowsConsoleIO_Check(op) (PyObject_TypeCheck((op), &PyWindowsConsoleIO_Type))