Home
last modified time | relevance | path

Searched refs:runctx (Results 1 - 8 of 8) sorted by relevance

/third_party/python/Lib/
H A DcProfile.py7 __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 Dprofile.py32 __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 Dtrace.py442 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 Dbdb.py627 def runctx(self, cmd, globals, locals): member in Bdb
H A Dpdb.py94 __all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace",
1683 def runctx(statement, globals, locals): function
/third_party/python/Lib/test/
H A Dtest_profile.py35 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 Dtest_trace.py235 """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 Dmain.py479 self.tracer.runctx(cmd, globals=globals(), locals=ns)

Completed in 9 milliseconds