Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dpickle.py479 def save_float(self, obj, pack=struct.pack): member in Pickler
484 dispatch[FloatType] = save_float
/external/python/cpython3/Lib/
Dpickle.py782 def save_float(self, obj): member in _Pickler
787 dispatch[float] = save_float
/external/python/cpython2/Modules/
DcPickle.c1198 save_float(Picklerobject *self, PyObject *args) in save_float() function
2643 res = save_float(self, args); in save()
/external/python/cpython3/Modules/
D_pickle.c2242 save_float(PicklerObject *self, PyObject *obj) in save_float() function
4300 return save_float(self, obj); in save()