Lines Matching refs:PyObject_GetAttr

921         global_name_attr = PyObject_GetAttr(module, global_name);  in whichmodule()
2065 if (!( class = PyObject_GetAttr(args, __class___str))) in save_inst()
2073 if ((getinitargs_func = PyObject_GetAttr(args, __getinitargs___str))) { in save_inst()
2139 if ((getstate_func = PyObject_GetAttr(args, __getstate___str))) { in save_inst()
2150 if (!( state = PyObject_GetAttr(args, __dict___str))) { in save_inst()
2206 if (!( global_name = PyObject_GetAttr(args, __name___str))) in save_global()
2461 PyObject *temp = PyObject_GetAttr(callable, __name___str); in save_reduce()
2501 ob_dot_class = PyObject_GetAttr(ob, __class___str); in save_reduce()
2788 __reduce__ = PyObject_GetAttr(args, __reduce_ex___str); in save()
2807 __reduce__ = PyObject_GetAttr(args, __reduce___str); in save()
3116 self->write = PyObject_GetAttr(file, write_str); in newPicklerobject()
3139 self->dispatch_table = PyObject_GetAttr(m, dispatch_table_str); in newPicklerobject()
3373 global = PyObject_GetAttr(module, py_global_name); in find_class()
3377 global = PyObject_GetAttr(module, py_global_name); in find_class()
4445 if (!( append_method = PyObject_GetAttr(list, append_str))) in do_append()
4563 __setstate__ = PyObject_GetAttr(inst, __setstate___str); in load_build()
4605 dict = PyObject_GetAttr(inst, __dict___str); in load_build()
5523 if (!( (self->readline = PyObject_GetAttr(f, readline_str)) && in newUnpicklerobject()
5524 (self->read = PyObject_GetAttr(f, read_str)))) { in newUnpicklerobject()
5906 dispatch_table = PyObject_GetAttr(copyreg, dispatch_table_str); in init_stuff()