diff options
author | Scott Sanderson <ssanderson@quantopian.com> | 2018-06-07 09:46:42 (GMT) |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2018-06-07 09:46:42 (GMT) |
commit | cebe80b59b7386db3cce904d280dab61d1037e7a (patch) | |
tree | 5565600350aead9bc48139ff28562e870894a0d0 /Doc/library/profile.rst | |
parent | fffeb6f3d66f1c844a9327ffe6e2ad8eae8aeb14 (diff) | |
download | cpython-cebe80b59b7386db3cce904d280dab61d1037e7a.zip cpython-cebe80b59b7386db3cce904d280dab61d1037e7a.tar.gz cpython-cebe80b59b7386db3cce904d280dab61d1037e7a.tar.bz2 |
bpo-29235: Update document for Profiler's context manager (GH-7331)
Diffstat (limited to 'Doc/library/profile.rst')
-rw-r--r-- | Doc/library/profile.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index 7b60426..5e33efe 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -272,6 +272,9 @@ functions: pr.print_stats() + .. versionchanged:: 3.8 + Added context manager support. + .. method:: enable() Start collecting profiling data. |