Home | History | Annotate | Download | only in python2.7

Lines Matching refs:LIST

122 APPEND          = 'a'   # append stack top to list below it
127 APPENDS = 'e' # extend list on stack by topmost stack slice
132 LIST = 'l' # build list from topmost stack items
133 EMPTY_LIST = ']' # push empty list
409 # the 4th and 5th item should be iterators that provide list
597 write(MARK + LIST)
1025 dispatch[LIST] = load_list
1181 list = stack[-1]
1182 list.append(value)
1188 list = stack[mark - 1]
1189 list.extend(stack[mark + 1:])