Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_lsprof.c128 static PyObject *empty_tuple; variable
133 PyObject *o = PyObject_Call(pObj->externalTimer, empty_tuple, NULL); in CallExternalTimer()
890 empty_tuple = PyTuple_New(0); in init_lsprof()
DcPickle.c114 static PyObject *empty_tuple; variable
711 if (!( str = PyObject_CallObject(self->readline, empty_tuple))) { in readline_other()
2062 PyObject_Call(getinitargs_func, empty_tuple, NULL))) in save_inst()
2124 state = PyObject_Call(getstate_func, empty_tuple, NULL); in save_inst()
2794 empty_tuple, NULL); in save()
5937 if (!(empty_tuple = PyTuple_New(0))) in init_stuff()
/external/python/cpython2/Python/
DPython-ast.c653 PyObject *empty_tuple, *d; in add_ast_fields() local
657 empty_tuple = PyTuple_New(0); in add_ast_fields()
658 if (!empty_tuple || in add_ast_fields()
659 PyDict_SetItemString(d, "_fields", empty_tuple) < 0 || in add_ast_fields()
660 PyDict_SetItemString(d, "_attributes", empty_tuple) < 0) { in add_ast_fields()
661 Py_XDECREF(empty_tuple); in add_ast_fields()
664 Py_DECREF(empty_tuple); in add_ast_fields()