[Python-checkins] Fix: typo (Indention) (GH-99904)

miss-islington webhook-mailer at python.org
Mon Dec 12 07:40:15 EST 2022


https://github.com/python/cpython/commit/24ed439462bdcbca6a23d0517970d9b5d195b2d6
commit: 24ed439462bdcbca6a23d0517970d9b5d195b2d6
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-12-12T04:40:09-08:00
summary:

Fix: typo (Indention) (GH-99904)


Example needed to be indented. Was trying to call a context manger `pr` (from ` with cProfile.Profile() as pr:`) wot perform ` pr.print_stats()` once it had already exited.
(cherry picked from commit 8711b59f7ac1803307d340e357e025043fbe2f39)

Co-authored-by: jarrodcolburn <jcourtlandcolburn at gmail.com>
Automerge-Triggered-By: GH:AlexWaygood

files:
M Doc/library/profile.rst

diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst
index cf324a57e79f..6f01d1e027ec 100644
--- a/Doc/library/profile.rst
+++ b/Doc/library/profile.rst
@@ -273,7 +273,7 @@ functions:
       with cProfile.Profile() as pr:
           # ... do something ...
 
-      pr.print_stats()
+          pr.print_stats()
 
    .. versionchanged:: 3.8
       Added context manager support.



More information about the Python-checkins mailing list