Searched refs:getinitargs (Results 1 – 10 of 10) sorted by relevance
39 object getinitargs = getattr(instance_obj, "__getinitargs__", none); in instance_reduce() local41 if (!getinitargs.is_none()) { in instance_reduce()42 initargs = tuple(getinitargs()); in instance_reduce()
41 getinitargs(const world& w) in getinitargs() function
53 getinitargs(const world& w) in getinitargs() function
50 getinitargs(const world& w) in getinitargs() function
39 static inaccessible* getinitargs() { return 0; } in getinitargs() function
31 getinitargs(world const& w)54 getinitargs(const world& w)
343 &PickleSuiteType::getinitargs, in def_pickle()
1167 getinitargs = getattr(self, "__getinitargs__", None)1168 if getinitargs:1169 args = getinitargs()
3734 PyObject *getinitargs, *getstate; in tzinfo_reduce() local3738 if (_PyObject_LookupAttrId(self, &PyId___getinitargs__, &getinitargs) < 0) { in tzinfo_reduce()3741 if (getinitargs != NULL) { in tzinfo_reduce()3742 args = PyObject_CallNoArgs(getinitargs); in tzinfo_reduce()3743 Py_DECREF(getinitargs); in tzinfo_reduce()
679 getinitargs(World const& w) { return make_tuple(w.greet()); }710 function in Python, the pickle_suite's getinitargs() is responsible for