Home
last modified time | relevance | path

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

/external/python/cpython3/PC/
D_testconsole.c50 if (!PyWindowsConsoleIO_Check(file)) { in _testconsole_write_input_impl()
/external/python/cpython3/Modules/_io/
D_iomodule.h26 #define PyWindowsConsoleIO_Check(op) (PyObject_TypeCheck((op), (PyTypeObject*)_PyWindowsConsoleIO_T… macro
Dwinconsoleio.c272 assert(PyWindowsConsoleIO_Check(self)); in _io__WindowsConsoleIO___init___impl()
/external/python/cpython3/Python/
Dpylifecycle.c39 #define PyWindowsConsoleIO_Check(op) (PyObject_TypeCheck((op), &PyWindowsConsoleIO_Type)) macro
1750 if (PyWindowsConsoleIO_Check(raw)) in create_stdio()