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.c371 RawIO_class = (PyObject *)&PyWindowsConsoleIO_Type; in _io_open_impl()
702 PyWindowsConsoleIO_Type.tp_base = &PyRawIOBase_Type; in PyInit__io()
703 ADD_TYPE(&PyWindowsConsoleIO_Type, "_WindowsConsoleIO"); in PyInit__io()
D_iomodule.h24 extern PyTypeObject PyWindowsConsoleIO_Type;
Dwinconsoleio.c159 PyTypeObject PyWindowsConsoleIO_Type; variable
1123 PyTypeObject PyWindowsConsoleIO_Type = { variable
1175 PyAPI_DATA(PyObject *) _PyWindowsConsoleIO_Type = (PyObject*)&PyWindowsConsoleIO_Type;
/external/python/cpython3/Python/
Dpylifecycle.c38 extern PyTypeObject PyWindowsConsoleIO_Type;
39 #define PyWindowsConsoleIO_Check(op) (PyObject_TypeCheck((op), &PyWindowsConsoleIO_Type))