Home
last modified time | relevance | path

Searched refs:LONG_BINPUT (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_pickletools.py35 self.assertNotIn(pickle.LONG_BINPUT, pickled2)
/external/python/cpython2/Lib/
Dpickle.py137 LONG_BINPUT = 'r' # " " " " " ; " " 4-byte arg variable
255 return LONG_BINPUT + pack("<i", i)
1182 dispatch[LONG_BINPUT] = load_long_binput
/external/python/cpython3/Lib/
Dpickle.py146 LONG_BINPUT = b'r' # " " " " " ; " " 4-byte arg variable
521 return LONG_BINPUT + pack("<I", idx)
1653 dispatch[LONG_BINPUT[0]] = load_long_binput
/external/python/cpython2/Modules/
DcPickle.c68 #define LONG_BINPUT 'r' macro
871 c_str[0] = LONG_BINPUT; in put2()
2997 *s++ = LONG_BINPUT; in Pickle_getvalue()
4939 case LONG_BINPUT: in load()
5357 case LONG_BINPUT: in noload()
/external/python/cpython3/Modules/
D_pickle.c72 LONG_BINPUT = 'r', enumerator
1785 pdata[0] = LONG_BINPUT; in memo_put()
6972 OP(LONG_BINPUT, load_long_binput) in load()
/external/python/cpython3/Misc/
DHISTORY9222 - Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in