Searched defs:runctx (Results 1 - 11 of 11) sorted by relevance

/external/python/cpython2/Lib/hotshot/
H A D__init__.py58 return self.runctx(cmd, dict, dict)
60 def runctx(self, cmd, globals, locals): member in class:Profile
/external/python/cpython2/Lib/
H A DcProfile.py7 __all__ = ["run", "runctx", "help", "Profile"]
39 def runctx(statement, globals, locals, filename=None, sort=-1): function
49 prof = prof.runctx(statement, globals, locals)
135 return self.runctx(cmd, dict, dict)
137 def runctx(self, cmd, globals, locals): member in class:Profile
192 runctx(code, globs, None, options.outfile, options.sort)
H A Dprofile.py33 __all__ = ["run", "runctx", "help", "Profile"]
69 def runctx(statement, globals, locals, filename=None, sort=-1): function
77 prof = prof.runctx(statement, globals, locals)
438 return self.runctx(cmd, dict, dict)
440 def runctx(self, cmd, globals, locals): member in class:Profile
542 p.runctx('f(m)', globals(), locals())
603 runctx(code, globs, None, options.outfile, options.sort)
H A Dtrace.py505 self.runctx(cmd, dict, dict)
507 def runctx(self, cmd, globals=None, locals=None): member in class:Trace
807 t.runctx(code, globs, globs)
H A Dbdb.py425 def runctx(self, cmd, globals, locals): member in class:Bdb
H A Dpdb.py28 __all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace",
1243 def runctx(statement, globals, locals): function
/external/python/cpython3/Lib/
H A DcProfile.py7 __all__ = ["run", "runctx", "Profile"]
18 def runctx(statement, globals, locals, filename=None, sort=-1): function
19 return _pyprofile._Utils(Profile).runctx(statement, globals, locals,
23 runctx.__doc__ = _pyprofile.runctx.__doc__
95 return self.runctx(cmd, dict, dict)
97 def runctx(self, cmd, globals, locals): member in class:Profile
153 runctx(code, globs, None, options.outfile, options.sort)
H A Dprofile.py33 __all__ = ["run", "runctx", "Profile"]
61 def runctx(self, statement, globals, locals, filename, sort): member in class:_Utils
64 prof.runctx(statement, globals, locals)
95 def runctx(statement, globals, locals, filename=None, sort=-1): function
101 return _Utils(Profile).runctx(statement, globals, locals, filename, sort)
418 return self.runctx(cmd, dict, dict)
420 def runctx(self, cmd, globals, locals): member in class:Profile
522 p.runctx('f(m)', globals(), locals())
582 runctx(code, globs, None, options.outfile, options.sort)
H A Dtrace.py461 self.runctx(cmd, dict, dict)
463 def runctx(self, cmd, globals=None, locals=None): member in class:Trace
730 t.runctx(code, globs, globs)
H A Dbdb.py454 def runctx(self, cmd, globals, locals): member in class:Bdb
H A Dpdb.py89 __all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace",
1577 def runctx(statement, globals, locals): function

Completed in 800 milliseconds