Lines Matching refs:list
63 # may be shared (for example, the list [a, a] refers to the same object a
68 # list, and L[0] is the same list. This is related to the object identity
1029 name="list",
1030 obtype=list,
1031 doc="A Python list object.")
1111 # what the stack looks like before this opcode runs; a list
1114 # what the stack looks like after this opcode runs; a list
1136 assert isinstance(stack_before, list)
1141 assert isinstance(stack_after, list)
1516 doc="Push an empty list."),
1524 doc="""Append an object to a list.
1538 doc="""Extend a list by a slice of stack objects.
1552 doc="""Build a list out of the topmost stack slice, after markobject.
1555 a single Python list, which single list object replaces all of the
2796 2: ] EMPTY_LIST Push an empty list.
2801 10: a APPEND Append an object to a list.