Home
last modified time | relevance | path

Searched refs:PERSID (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Dpickle.py114 PERSID = 'P' # push persistent object; id is taken from string arg variable
343 self.write(PERSID + str(pid) + '\n')
898 dispatch[PERSID] = load_persid
/external/python/cpython3/Lib/
Dpickle.py123 PERSID = b'P' # push persistent object; id is taken from string arg variable
616 self.write(PERSID + str(pid).encode("ascii") + b'\n')
1250 dispatch[PERSID[0]] = load_persid
/external/python/cpython2/Modules/
DcPickle.c45 #define PERSID 'P' macro
2340 static char persid = PERSID, binpersid = BINPERSID; in save_pers()
4972 case PERSID: in load()
5390 case PERSID: in noload()
/external/python/cpython3/Modules/
D_pickle.c50 PERSID = 'P', enumerator
3868 const char persid_op = PERSID; in save_pers()
6932 OP(PERSID, load_persid) in load()
/external/python/cpython3/Lib/test/
Dpickletester.py3481 pickled = pickle.PERSID + non_ascii_str.encode('utf-8') + b'\n.'