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

Lines Matching refs:after

60 + Recursive objects.  For example, after "L = []; L.append(L)", L is a
815 No matter how many object are on the stack after the topmost
844 # what the stack looks like after this opcode runs; a list
1150 Stack after: ... pylist+[anyobject]
1164 Stack after: ... pylist+stackslice
1175 doc="""Build a list out of the topmost stack slice, after markobject.
1182 Stack after: ... [1, 2, 3, 'abc']
1201 doc="""Build a tuple out of the topmost stack slice, after markobject.
1208 Stack after: ... (1, 2, 3, 'abc')
1272 doc="""Build a dict out of the topmost stack slice, after markobject.
1280 Stack after: ... {1: 2, 3: 'abc'}
1292 Stack after: ... pydict
1307 immediately under the topmost markobject. Everything at and after the
1312 Stack after: ... pydict
1520 Stack after: ... callable(*pytuple)
1547 Stack after: ... anyobject
1646 Stack after: ... new_instance_object
1813 stopping after a STOP opcode is delivered. A triple is generated for
1947 after
1955 assert markobject not in after
1965 # Pop everything at and after the topmost markobject.
1992 assert len(after) == 1
1993 after = [memo[arg]] # for better stack emulation
2017 if markobject in after:
2021 stack.extend(after)
2025 raise ValueError("stack not empty after STOP: %r" % stack)