Searched refs:BUILD_TUPLE (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Include/ |
D | opcode.h | 109 #define BUILD_TUPLE 102 /* Number of tuple items */ macro
|
/external/python/cpython2/Python/ |
D | peephole.c | 44 assert(codestr[n*3] == BUILD_TUPLE || codestr[n*3] == BUILD_LIST); in tuple_of_constants() 433 case BUILD_TUPLE: in PyCode_Optimize() 439 ((opcode == BUILD_TUPLE && in PyCode_Optimize()
|
D | compile.c | 842 case BUILD_TUPLE: in opcode_stack_effect() 1298 ADDOP_I(c, BUILD_TUPLE, free); in compiler_make_closure() 1413 ADDOP_I(c, BUILD_TUPLE, n); in compiler_class() 2487 ADDOP_I(c, BUILD_TUPLE, n); in compiler_tuple() 3377 ADDOP_I(c, BUILD_TUPLE, n); in compiler_visit_slice()
|
D | ceval.c | 2450 TARGET(BUILD_TUPLE) in PyEval_EvalFrameEx()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 639 .. opcode:: BUILD_TUPLE (count) 647 Works as ``BUILD_TUPLE``, but creates a list. 652 Works as ``BUILD_TUPLE``, but creates a set.
|
/external/python/cpython2/Lib/compiler/ |
D | pyassem.py | 735 def BUILD_TUPLE(self, count): member in StackDepthTracker
|