Searched defs:PyEncoderType (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/simplejson/
H A D_speedups.c45 #define PyEncoder_Check(op) PyObject_TypeCheck(op, &PyEncoderType)
46 #define PyEncoder_CheckExact(op) (Py_TYPE(op) == &PyEncoderType)
49 static PyTypeObject PyEncoderType; variable
2670 PyTypeObject PyEncoderType = { variable
2735 PyEncoderType.tp_new = PyType_GenericNew;
2736 if (PyType_Ready(&PyEncoderType) < 0)
2743 Py_INCREF((PyObject*)&PyEncoderType);
2744 PyModule_AddObject(m, "make_encoder", (PyObject*)&PyEncoderType);

Completed in 96 milliseconds