]> granicus.if.org Git - python/commitdiff
Move versionadded for tracemalloc into the standard location (right after title)
authorR David Murray <rdmurray@bitdance.com>
Fri, 20 Dec 2013 19:48:50 +0000 (14:48 -0500)
committerR David Murray <rdmurray@bitdance.com>
Fri, 20 Dec 2013 19:48:50 +0000 (14:48 -0500)
Doc/library/tracemalloc.rst

index d4067825d2235be3cef98014dc71cc35d44c7d21..e49d4ca4512c9991ec8543fdbce19e55d7102a5e 100644 (file)
@@ -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
 ========