Home
last modified time | relevance | path

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

/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 …]
/external/python/cpython3/Objects/
Dtypeobject.c8654 } superobject; typedef
8657 {"__thisclass__", T_OBJECT, offsetof(superobject, type), READONLY,
8659 {"__self__", T_OBJECT, offsetof(superobject, obj), READONLY,
8661 {"__self_class__", T_OBJECT, offsetof(superobject, obj_type), READONLY,
8669 superobject *su = (superobject *)self; in super_dealloc()
8681 superobject *su = (superobject *)self; in super_repr()
8697 superobject *su = (superobject *)self; in super_getattro()
8830 superobject *su = (superobject *)self; in super_descr_get()
8831 superobject *newobj; in super_descr_get()
8848 newobj = (superobject *)PySuper_Type.tp_new(&PySuper_Type, in super_descr_get()
[all …]