]> granicus.if.org Git - python/commitdiff
bpo-29235: Update document for Profiler's context manager (GH-7331)
authorScott Sanderson <ssanderson@quantopian.com>
Thu, 7 Jun 2018 09:46:42 +0000 (05:46 -0400)
committerINADA Naoki <methane@users.noreply.github.com>
Thu, 7 Jun 2018 09:46:42 +0000 (18:46 +0900)
Doc/library/profile.rst
Doc/whatsnew/3.8.rst
Misc/NEWS.d/next/Library/2018-05-14-15-01-55.bpo-29235.47Fzwt.rst

index 7b60426fbc0ab44b5e349500f9e2f88093f680c0..5e33efe1c16528045ad4a3d94bfdedf2876bb2de 100644 (file)
@@ -272,6 +272,9 @@ functions:
 
       pr.print_stats()
 
+   .. versionchanged:: 3.8
+      Added context manager support.
+
    .. method:: enable()
 
       Start collecting profiling data.
index 9aad908f927f84ab33caf558068818a54f787408..52c762632647c79e706d0cb1e0872a1320ee1398 100644 (file)
@@ -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
 ------------------------
index 4618afc13ae08dd11d361432a4d6de943cbe8295..2ce9096126ab895449cf52444377c66118724d1d 100644 (file)
@@ -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.