Searched refs:save_global (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/ |
D | pickle.py | 300 self.save_global(obj) 317 self.save_global(obj, rv) 736 def save_global(self, obj, name=None, pack=struct.pack): member in Pickler 776 dispatch[ClassType] = save_global 777 dispatch[FunctionType] = save_global 778 dispatch[BuiltinFunctionType] = save_global 779 dispatch[TypeType] = save_global
|
/external/python/cpython3/Lib/ |
D | pickle.py | 518 self.save_global(obj) 535 self.save_global(obj, rv) 940 def save_global(self, obj, name=None): member in _Pickler 1013 return self.save_global(obj) 1015 dispatch[FunctionType] = save_global
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 2193 save_global(Picklerobject *self, PyObject *args, PyObject *name) in save_global() function 2708 res = save_global(self, args, NULL); in save() 2736 res = save_global(self, args, NULL); in save() 2743 res = save_global(self, args, NULL); in save() 2755 res = save_global(self, args, NULL); in save() 2783 res = save_global(self, args, NULL); in save() 2823 res = save_global(self, args, t); in save()
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 3292 save_global(PicklerObject *self, PyObject *obj, PyObject *name) in save_global() function 3573 return save_global(self, obj, NULL); in save_type() 4030 status = save_global(self, obj, NULL); in save() 4069 status = save_global(self, obj, NULL); in save() 4117 status = save_global(self, obj, reduce_value); in save()
|