Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/test_email/
Dtest_policy.py89 abstract_methods = ('fold',
94 for method in abstract_methods:
/external/python/cpython3/Objects/
Dtypeobject.c3688 PyObject *abstract_methods = NULL; in object_new() local
3699 abstract_methods = type_abstractmethods(type, NULL); in object_new()
3700 if (abstract_methods == NULL) in object_new()
3709 abstract_methods, in object_new()
3728 Py_XDECREF(abstract_methods); in object_new()
/external/python/cpython2/Objects/
Dtypeobject.c3026 PyObject *abstract_methods = NULL; in object_new() local
3035 abstract_methods = type_abstractmethods(type, NULL); in object_new()
3036 if (abstract_methods == NULL) in object_new()
3045 abstract_methods, in object_new()
3070 Py_XDECREF(abstract_methods); in object_new()