diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-20 19:48:50 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-20 19:48:50 (GMT) |
commit | 6d5cb07382ff53bead8d84e3332256250bed5652 (patch) | |
tree | 8c18f9ecab945285225545e3bde7465b38bedcf7 | |
parent | 43ad138160526637b23465b92f956f1c0909cfd8 (diff) | |
download | cpython-6d5cb07382ff53bead8d84e3332256250bed5652.zip cpython-6d5cb07382ff53bead8d84e3332256250bed5652.tar.gz cpython-6d5cb07382ff53bead8d84e3332256250bed5652.tar.bz2 |
Move versionadded for tracemalloc into the standard location (right after title)
-rw-r--r-- | Doc/library/tracemalloc.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst index d406782..e49d4ca 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 ======== |