Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dfileobject.h35 PyAPI_DATA(PyTypeObject) PyFile_Type;
37 #define PyFile_Check(op) PyObject_TypeCheck(op, &PyFile_Type)
38 #define PyFile_CheckExact(op) (Py_TYPE(op) == &PyFile_Type)
/external/python/cpython2/PC/os2vacpp/
Dpython.def41 PyFile_Type
/external/python/cpython2/Doc/c-api/
Dfile.rst20 .. c:var:: PyTypeObject PyFile_Type
/external/python/cpython2/Objects/
Dfileobject.c479 f = (PyFileObject *)PyFile_Type.tp_new(&PyFile_Type, NULL, NULL); in PyFile_FromFile()
2511 PyTypeObject PyFile_Type = { variable
Dobject.c2209 if (PyType_Ready(&PyFile_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython2/Python/
Dimport.c3136 &PyFile_Type, &fob)) in imp_load_compiled()
3158 &PyFile_Type, &fob)) in imp_load_dynamic()
3180 &PyFile_Type, &fob)) in imp_load_source()
Dbltinmodule.c1506 return PyObject_Call((PyObject*)&PyFile_Type, args, kwds); in builtin_open()
2733 SETBUILTIN("file", &PyFile_Type); in _PyBuiltin_Init()
/external/python/cpython2/PC/os2emx/
Dpython27.def308 "PyFile_Type"
/external/python/cpython2/Modules/
Dbz2module.c1460 self->file = PyObject_CallFunction((PyObject*)&PyFile_Type, "(Osi)", in BZ2File_init()