diff options
author | csabella <chekat2@gmail.com> | 2017-05-14 07:02:38 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-05-14 07:02:38 (GMT) |
commit | 99776296230ddd8429ebad2d07854b8c27ea10ab (patch) | |
tree | 8ee3ce39b3822bfc4e8ccafed62f9445938355ff /Doc/library/profile.rst | |
parent | 4ab6abfca4d6e444cca04821b24701cde6993f4e (diff) | |
download | cpython-99776296230ddd8429ebad2d07854b8c27ea10ab.zip cpython-99776296230ddd8429ebad2d07854b8c27ea10ab.tar.gz cpython-99776296230ddd8429ebad2d07854b8c27ea10ab.tar.bz2 |
bpo-30358: Document sort argument of profile.runctx() (GH-1566)
Diffstat (limited to 'Doc/library/profile.rst')
-rw-r--r-- | Doc/library/profile.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index b4b1479..5796e3a 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -215,11 +215,11 @@ functions: and gathers profiling statistics from the execution. If no file name is present, then this function automatically creates a :class:`~pstats.Stats` - instance and prints a simple profiling report. If the sort value is specified + instance and prints a simple profiling report. If the sort value is specified, it is passed to this :class:`~pstats.Stats` instance to control how the results are sorted. -.. function:: runctx(command, globals, locals, filename=None) +.. function:: runctx(command, globals, locals, filename=None, sort=-1) This function is similar to :func:`run`, with added arguments to supply the globals and locals dictionaries for the *command* string. This routine |