Searched refs:delstr (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
H A Dgcmodule.c64 static PyObject *delstr = NULL; variable
507 assert(delstr != NULL);
508 return _PyInstance_Lookup(op, delstr) != NULL;
884 if (delstr == NULL) {
885 delstr = PyString_InternFromString("__del__");
886 if (delstr == NULL)
/external/python/cpython2/Objects/
H A Dclassobject.c635 static PyObject *delstr; local
649 if (delstr == NULL) {
650 delstr = PyString_InternFromString("__del__");
651 if (delstr == NULL)
654 if (delstr && (del = instance_getattr2(inst, delstr)) != NULL) {

Completed in 134 milliseconds