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

Lines Matching full:locals

37     def __init__(self, locals=None):
40 The optional 'locals' argument specifies the dictionary in
46 if locals is None:
47 locals = {"__name__": "__console__", "__doc__": None}
48 self.locals = locals
103 exec code in self.locals
182 def __init__(self, locals=None, filename="<console>"):
185 The optional locals argument will be passed to the
192 InteractiveInterpreter.__init__(self, locals)