Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/test_email/
Dtest_policy.py91 abstract_methods = ('fold',
96 for method in abstract_methods:
/external/python/cpython3/Objects/
Dtypeobject.c6123 PyObject *abstract_methods; in object_new() local
6131 abstract_methods = type_abstractmethods(type, NULL); in object_new()
6132 if (abstract_methods == NULL) in object_new()
6134 sorted_methods = PySequence_List(abstract_methods); in object_new()
6135 Py_DECREF(abstract_methods); in object_new()