Lines Matching refs:f_globals
107 if inspect.isframe(obj) and obj.f_globals is obj.f_locals:
366 globals = self.curframe.f_globals
494 ns = self.curframe.f_globals.copy()
652 self.curframe.f_globals,
751 globs = self.curframe.f_globals if hasattr(self, 'curframe') else None
1094 globals = self.curframe.f_globals
1159 return eval(arg, self.curframe.f_globals, self.curframe_locals)
1168 return eval(arg, self.curframe.f_globals, self.curframe_locals)
1170 return eval(arg, frame.f_globals, frame.f_locals)
1239 lines = linecache.getlines(filename, self.curframe.f_globals)
1380 ns = self.curframe.f_globals.copy()