Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dpickle.py129 BINGET = 'h' # " " " " " " ; " " 1-byte arg variable
263 return BINGET + chr(i)
1163 dispatch[BINGET] = load_binget
/external/python/cpython3/Lib/
Dpickle.py138 BINGET = b'h' # " " " " " " ; " " 1-byte arg variable
529 return BINGET + pack("<B", i)
1623 dispatch[BINGET[0]] = load_binget
/external/python/cpython2/Modules/
DcPickle.c60 #define BINGET 'h' macro
777 s[0] = BINGET; in get()
2976 *s++ = BINGET; in Pickle_getvalue()
4900 case BINGET: in load()
5317 case BINGET: in noload()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a2.rst450 objects it has seen. The malformed input would have caused either a `BINGET`
/external/python/cpython3/Modules/
D_pickle.c64 BINGET = 'h', enumerator
1723 pdata[0] = BINGET; in memo_get()
6967 OP(BINGET, load_binget) in load()