(statement, globals, locals, 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, |
| 21 | filename, sort) |
| 22 | |
| 23 | run.__doc__ = _pyprofile.run.__doc__ |
| 24 | runctx.__doc__ = _pyprofile.runctx.__doc__ |