Skip to content

bpo-29235: Update document for Profiler's context manager #7331

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Doc/library/profile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,9 @@ functions:

pr.print_stats()

.. versionchanged:: 3.8
Added context manager support.

.. method:: enable()

Start collecting profiling data.
Expand Down
2 changes: 2 additions & 0 deletions Doc/whatsnew/3.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ Changes in the Python API
``type.__new__``. A :exc:`DeprecationWarning` was emitted in Python
3.6--3.7. (Contributed by Serhiy Storchaka in :issue:`23722`.)

* The :class:`cProfile.Profile` class can now be used as a context
manager. (Contributed by Scott Sanderson in :issue:`29235`.)

CPython bytecode changes
------------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
The :class:`cProfile.Profile` class can now be used as a context manager.
You can profile a block of code by running::

import cProfile
with cProfile.Profile() as profiler:
# ... code to be profiled ...

Patch by Scott Sanderson.
The :class:`cProfile.Profile` class can now be used as a context manager. Patch
by Scott Sanderson.