Lines Matching refs:BUILD
123 BUILD = 'b' # call __setstate__ or __dict__.update()
125 DICT = 'd' # build a dict from stack items
130 INST = 'i' # build & push class instance
132 LIST = 'l' # build list from topmost stack items
134 OBJ = 'o' # build & push class instance
139 TUPLE = 't' # build tuple from topmost stack items
150 NEWOBJ = '\x81' # build object by applying cls.__new__ to argtuple
154 TUPLE1 = '\x85' # build 1-tuple from stack top
155 TUPLE2 = '\x86' # build 2-tuple from two topmost stack items
156 TUPLE3 = '\x87' # build 3-tuple from three topmost stack items
420 write(BUILD)
726 write(BUILD)
1248 dispatch[BUILD] = load_build
1304 # Build the 256's-complement: (1L << nbytes) + x. The trick is