Searched refs:Picklerobject (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Modules/ |
D | cPickle.c | 331 typedef struct Picklerobject { struct 348 Py_ssize_t (*write_func)(struct Picklerobject *, const char *, Py_ssize_t); argument 354 } Picklerobject; argument 387 static int save(Picklerobject *, PyObject *, int); 388 static int put2(Picklerobject *, PyObject *); 426 write_file(Picklerobject *self, const char *s, Py_ssize_t n) in write_file() 448 write_cStringIO(Picklerobject *self, const char *s, Py_ssize_t n) in write_cStringIO() 471 write_none(Picklerobject *self, const char *s, Py_ssize_t n) in write_none() 478 write_other(Picklerobject *self, const char *s, Py_ssize_t n) in write_other() 743 get(Picklerobject *self, PyObject *id) in get() [all …]
|