Searched refs:TUPLE3 (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | pickle.py | 156 TUPLE3 = '\x87' # build 3-tuple from three topmost stack items variable 162 _tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3] 1018 dispatch[TUPLE3] = load_tuple3
|
/external/python/cpython3/Lib/ |
D | pickle.py | 165 TUPLE3 = b'\x87' # build 3-tuple from three topmost stack items variable 171 _tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3] 1448 dispatch[TUPLE3[0]] = load_tuple3
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 82 #define TUPLE3 '\x87' /* build 3-tuple from three topmost stack items */ macro 1531 static char len2opcode[] = {EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3}; in save_tuple() 4830 case TUPLE3: in load() 5247 case TUPLE3: in noload()
|
/external/python/cpython3/Lib/test/ |
D | pickletester.py | 1871 (2, 3): pickle.TUPLE3, 1877 (3, 3): pickle.TUPLE3,
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 87 TUPLE3 = '\x87', enumerator 2783 const char len2opcode[] = {EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3}; in save_tuple() 6948 OP_ARG(TUPLE3, load_counted_tuple, 3) in load()
|
/external/python/cpython2/Lib/test/ |
D | pickletester.py | 1208 (2, 3): pickle.TUPLE3,
|