Searched refs:getattribute (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_pickle.py | 380 def getattribute(module, name): function 419 attr = getattribute(module3, name3) 422 attr = getattribute(module3, name3) 429 attr = getattribute(module3, name3) 433 self.assertEqual(getattribute(module, name), attr) 459 attr = getattribute(module3, name3)
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 5656 PyObject *getattr, *getattribute, *res; local 5688 getattribute = _PyType_Lookup(tp, getattribute_str); 5689 if (getattribute == NULL || 5690 (Py_TYPE(getattribute) == &PyWrapperDescr_Type && 5691 ((PyWrapperDescrObject *)getattribute)->d_wrapped == 5695 Py_INCREF(getattribute); 5696 res = call_attribute(self, getattribute, name); 5697 Py_DECREF(getattribute);
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 6753 PyObject *getattr, *getattribute, *res; in slot_tp_getattr_hook() local 6773 getattribute = _PyType_LookupId(tp, &PyId___getattribute__); in slot_tp_getattr_hook() 6774 if (getattribute == NULL || in slot_tp_getattr_hook() 6775 (Py_IS_TYPE(getattribute, &PyWrapperDescr_Type) && in slot_tp_getattr_hook() 6776 ((PyWrapperDescrObject *)getattribute)->d_wrapped == in slot_tp_getattr_hook() 6780 Py_INCREF(getattribute); in slot_tp_getattr_hook() 6781 res = call_attribute(self, getattribute, name); in slot_tp_getattr_hook() 6782 Py_DECREF(getattribute); in slot_tp_getattr_hook()
|
/external/ImageMagick/PerlMagick/ |
D | MANIFEST | 50 t/getattribute.t
|
D | Magick.xs | 4640 getattribute = 5 in Get()
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2491 ... print "Metaclass getattribute invoked" 2499 ... print "Class getattribute invoked" 2504 Class getattribute invoked 2507 Metaclass getattribute invoked
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 2612 ... print("Metaclass getattribute invoked") 2619 ... print("Class getattribute invoked") 2624 Class getattribute invoked 2627 Metaclass getattribute invoked
|
/external/python/jinja/ |
D | CHANGES.rst | 616 - Fixed a bug for getattribute constant folding.
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 1861 getattribute(PyObject *obj, PyObject *name, int allow_qualname) in getattribute() function 7154 global = getattribute(module, global_name, self->proto >= 4); in _pickle_Unpickler_find_class_impl()
|
/external/ImageMagick/PerlMagick/quantum/ |
D | quantum.xs.in | 4638 getattribute = 5
|
/external/libxml2/ |
D | ChangeLog | 12230 * xmlreader.c doc/libxml2-api.xml: added the close and getattribute
|