diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2018-08-03 09:09:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-03 09:09:57 (GMT) |
commit | 2ebd3813af9172fe1f9b2f6004edf6f1e1e5d9f1 (patch) | |
tree | 0ba15272ee9a85369c7f2a440ab24160199e02fe /Modules | |
parent | b6efc2cf9701adfb901eec2fe6a418893739877a (diff) | |
download | cpython-2ebd3813af9172fe1f9b2f6004edf6f1e1e5d9f1.zip cpython-2ebd3813af9172fe1f9b2f6004edf6f1e1e5d9f1.tar.gz cpython-2ebd3813af9172fe1f9b2f6004edf6f1e1e5d9f1.tar.bz2 |
Fix docstring of Profiler class (GH-8651)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_lsprof.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_lsprof.c b/Modules/_lsprof.c index 6027470..233f62f 100644 --- a/Modules/_lsprof.c +++ b/Modules/_lsprof.c @@ -788,11 +788,11 @@ static PyMethodDef profiler_methods[] = { }; PyDoc_STRVAR(profiler_doc, "\ -Profiler(custom_timer=None, time_unit=None, subcalls=True, builtins=True)\n\ +Profiler(timer=None, timeunit=None, subcalls=True, builtins=True)\n\ \n\ Builds a profiler object using the specified timer function.\n\ The default timer is a fast built-in one based on real time.\n\ - For custom timer functions returning integers, time_unit can\n\ + For custom timer functions returning integers, timeunit can\n\ be a float specifying a scale (i.e. how long each integer unit\n\ is, in seconds).\n\ "); |