Home
last modified time | relevance | path

Searched refs:save_dict (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
Dpickle.py646 def save_dict(self, obj): member in Pickler
657 dispatch[DictionaryType] = save_dict
659 dispatch[PyStringMap] = save_dict
/external/python/cpython3/Lib/
Dpickle.py964 def save_dict(self, obj): member in _Pickler
973 dispatch[dict] = save_dict
975 dispatch[PyStringMap] = save_dict
/external/python/cpython2/Modules/
DcPickle.c1987 save_dict(Picklerobject *self, PyObject *args) in save_dict() function
2722 res = save_dict(self, args); in save()
/external/python/cpython3/Modules/
D_pickle.c3301 save_dict(PicklerObject *self, PyObject *obj) in save_dict() function
4324 status = save_dict(self, obj); in save()