(statement, filename=None, sort=-1)
| 14 | # Simple interface |
| 15 | |
| 16 | def run(statement, filename=None, sort=-1): |
| 17 | return _pyprofile._Utils(Profile).run(statement, filename, sort) |
| 18 | |
| 19 | def runctx(statement, globals, locals, filename=None, sort=-1): |
| 20 | return _pyprofile._Utils(Profile).runctx(statement, globals, locals, |