Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dpickle.py119 SHORT_BINSTRING = 'U' # " " ; " " " " < 256 bytes variable
490 self.write(SHORT_BINSTRING + chr(n) + obj)
520 self.write(SHORT_BINSTRING + chr(l) + obj)
997 dispatch[SHORT_BINSTRING] = load_short_binstring
/external/python/cpython3/Lib/
Dpickle.py128 SHORT_BINSTRING= b'U' # " " ; " " " " < 256 bytes variable
1418 dispatch[SHORT_BINSTRING[0]] = load_short_binstring
/external/python/cpython2/Modules/
DcPickle.c50 #define SHORT_BINSTRING 'U' macro
1277 c_str[0] = SHORT_BINSTRING; in save_string()
4793 case SHORT_BINSTRING: in load()
5210 case SHORT_BINSTRING: in noload()
/external/python/cpython3/Modules/
D_pickle.c55 SHORT_BINSTRING = 'U', enumerator
6891 OP_ARG(SHORT_BINSTRING, load_counted_binstring, 1) in load()