[Python-checkins] cpython: Issue #19818: tracemalloc, the number of frame limit cannot be zero anymore

victor.stinner python-checkins at python.org
Wed Nov 27 23:41:54 CET 2013


http://hg.python.org/cpython/rev/8df54b9b99ef
changeset:   87618:8df54b9b99ef
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Nov 27 23:39:55 2013 +0100
summary:
  Issue #19818: tracemalloc, the number of frame limit cannot be zero anymore

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


diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst
--- a/Doc/library/tracemalloc.rst
+++ b/Doc/library/tracemalloc.rst
@@ -391,9 +391,9 @@
       If *all_frames* is ``True``, all frames of the traceback are checked. If
       *all_frames* is ``False``, only the most recent frame is checked.
 
-      This attribute is ignored if the traceback limit is less than ``2``.  See
-      the :func:`get_traceback_limit` function and
-      :attr:`Snapshot.traceback_limit` attribute.
+      This attribute has no effect if the traceback limit is ``1``.  See the
+      :func:`get_traceback_limit` function and :attr:`Snapshot.traceback_limit`
+      attribute.
 
 
 Frame

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


More information about the Python-checkins mailing list