Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_bz2module.c56 static PyTypeObject BZ2Compressor_Type; variable
355 static PyTypeObject BZ2Compressor_Type = { variable
766 if (PyType_Ready(&BZ2Compressor_Type) < 0) in PyInit__bz2()
775 Py_INCREF(&BZ2Compressor_Type); in PyInit__bz2()
776 PyModule_AddObject(m, "BZ2Compressor", (PyObject *)&BZ2Compressor_Type); in PyInit__bz2()
/external/python/cpython3/Modules/clinic/
D_bz2module.c.h84 if ((Py_TYPE(self) == &BZ2Compressor_Type) && in _bz2_BZ2Compressor___init__()