Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeobject.c7453 } superobject; typedef
7456 {"__thisclass__", T_OBJECT, offsetof(superobject, type), READONLY,
7458 {"__self__", T_OBJECT, offsetof(superobject, obj), READONLY,
7460 {"__self_class__", T_OBJECT, offsetof(superobject, obj_type), READONLY,
7468 superobject *su = (superobject *)self; in super_dealloc()
7480 superobject *su = (superobject *)self; in super_repr()
7496 superobject *su = (superobject *)self; in super_getattro()
7627 superobject *su = (superobject *)self; in super_descr_get()
7628 superobject *newobj; in super_descr_get()
7645 newobj = (superobject *)PySuper_Type.tp_new(&PySuper_Type, in super_descr_get()
[all …]
/external/python/cpython2/Objects/
Dtypeobject.c6616 } superobject; typedef
6619 {"__thisclass__", T_OBJECT, offsetof(superobject, type), READONLY,
6621 {"__self__", T_OBJECT, offsetof(superobject, obj), READONLY,
6623 {"__self_class__", T_OBJECT, offsetof(superobject, obj_type), READONLY,
6631 superobject *su = (superobject *)self;
6643 superobject *su = (superobject *)self;
6659 superobject *su = (superobject *)self;
6791 superobject *su = (superobject *)self;
6792 superobject *newobj;
6809 newobj = (superobject *)PySuper_Type.tp_new(&PySuper_Type,
[all …]