/third_party/python/Lib/ |
H A D | cProfile.py | 7 __all__ = ["run", "runctx", "Profile"] 19 def runctx(statement, globals, locals, filename=None, sort=-1): function 20 return _pyprofile._Utils(Profile).runctx(statement, globals, locals, 24 runctx.__doc__ = _pyprofile.runctx.__doc__ 96 return self.runctx(cmd, dict, dict) 98 def runctx(self, cmd, globals, locals): member in Profile 180 runctx(code, globs, None, options.outfile, options.sort)
|
H A D | profile.py | 32 __all__ = ["run", "runctx", "Profile"] 60 def runctx(self, statement, globals, locals, filename, sort): member in _Utils 63 prof.runctx(statement, globals, locals) 94 def runctx(statement, globals, locals, filename=None, sort=-1): function 100 return _Utils(Profile).runctx(statement, globals, locals, filename, sort) 417 return self.runctx(cmd, dict, dict) 419 def runctx(self, cmd, globals, locals): member in Profile 521 p.runctx('f(m)', globals(), locals()) 600 runctx(code, globs, None, options.outfile, options.sort)
|
H A D | trace.py | 442 self.runctx(cmd, dict, dict) 444 def runctx(self, cmd, globals=None, locals=None): member in Trace 729 t.runctx(code, globs, globs)
|
H A D | bdb.py | 627 def runctx(self, cmd, globals, locals): member in Bdb
|
H A D | pdb.py | 94 __all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace", 1683 def runctx(statement, globals, locals): function
|
/third_party/python/Lib/test/ |
H A D | test_profile.py | 35 prof.runctx("testfunc()", globals(), locals()) 82 prof.runctx(stmt, globals(), locals()) 97 self.profilermodule.runctx("testfunc()", globals(), locals()) 98 self.profilermodule.runctx("testfunc()", globals(), locals(),
|
H A D | test_trace.py | 235 """A simple sanity test of line-counting, via runctx (exec)""" 244 self.tracer.runctx(code, globals(), vars())
|
/third_party/python/Lib/test/libregrtest/ |
H A D | main.py | 479 self.tracer.runctx(cmd, globals=globals(), locals=ns)
|