[Python-checkins] cpython: Move versionadded for tracemalloc into the standard location (right after title)

r.david.murray python-checkins at python.org
Fri Dec 20 21:12:01 CET 2013


http://hg.python.org/cpython/rev/eba17a83bab1
changeset:   88093:eba17a83bab1
user:        R David Murray <rdmurray at bitdance.com>
date:        Fri Dec 20 14:48:50 2013 -0500
summary:
  Move versionadded for tracemalloc into the standard location (right after title)

files:
  Doc/library/tracemalloc.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst
--- 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 @@
 :envvar:`PYTHONTRACEMALLOC` environment variable to ``25``, or use the
 :option:`-X` ``tracemalloc=25`` command line option.
 
-.. versionadded:: 3.4
-
 
 Examples
 ========

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list