Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dpickle.py154 TUPLE1 = '\x85' # build 1-tuple from stack top variable
162 _tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3]
1010 dispatch[TUPLE1] = load_tuple1
/external/python/cpython3/Lib/
Dpickle.py163 TUPLE1 = b'\x85' # build 1-tuple from stack top variable
171 _tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3]
1440 dispatch[TUPLE1[0]] = load_tuple1
/external/python/cpython2/Modules/
DcPickle.c80 #define TUPLE1 '\x85' /* build 1-tuple from stack top */ macro
1531 static char len2opcode[] = {EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3}; in save_tuple()
4820 case TUPLE1: in load()
5237 case TUPLE1: in noload()
/external/python/cpython3/Lib/test/
Dpickletester.py1869 (2, 1): pickle.TUPLE1,
1875 (3, 1): pickle.TUPLE1,
/external/python/cpython3/Modules/
D_pickle.c85 TUPLE1 = '\x85', enumerator
2783 const char len2opcode[] = {EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3}; in save_tuple()
6946 OP_ARG(TUPLE1, load_counted_tuple, 1) in load()
/external/python/cpython2/Lib/test/
Dpickletester.py1206 (2, 1): pickle.TUPLE1,