From: R David Murray Date: Fri, 20 Dec 2013 19:48:50 +0000 (-0500) Subject: Move versionadded for tracemalloc into the standard location (right after title) X-Git-Tag: v3.4.0b2~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d5cb07382ff53bead8d84e3332256250bed5652;p=thirdparty%2FPython%2Fcpython.git Move versionadded for tracemalloc into the standard location (right after title) --- diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst index d4067825d223..e49d4ca4512c 100644 --- a/Doc/library/tracemalloc.rst +++ b/Doc/library/tracemalloc.rst @@ -4,6 +4,8 @@ .. module:: tracemalloc :synopsis: Trace memory allocations. +.. versionadded:: 3.4 + The tracemalloc module is a debug tool to trace memory blocks allocated by Python. It provides the following information: @@ -23,8 +25,6 @@ frame (1 frame). To store 25 frames at startup: set the :envvar:`PYTHONTRACEMALLOC` environment variable to ``25``, or use the :option:`-X` ``tracemalloc=25`` command line option. -.. versionadded:: 3.4 - Examples ========