From 6d5cb07382ff53bead8d84e3332256250bed5652 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Fri, 20 Dec 2013 14:48:50 -0500 Subject: [PATCH] Move versionadded for tracemalloc into the standard location (right after title) --- Doc/library/tracemalloc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst index d4067825d2..e49d4ca451 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 ======== -- 2.40.0