Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_json.c25 #define PyScanner_Check(op) PyObject_TypeCheck(op, &PyScannerType)
26 #define PyScanner_CheckExact(op) (Py_TYPE(op) == &PyScannerType)
30 static PyTypeObject PyScannerType; variable
1795 PyTypeObject PyScannerType = { variable
2448 PyScannerType.tp_new = PyType_GenericNew; in init_json()
2449 if (PyType_Ready(&PyScannerType) < 0) in init_json()
2457 Py_INCREF((PyObject*)&PyScannerType); in init_json()
2458 PyModule_AddObject(m, "make_scanner", (PyObject*)&PyScannerType); in init_json()