diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-11-27 22:39:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-11-27 22:39:55 (GMT) |
commit | 5362abf4ec1f7fe6491b605fb1b007b62c0f53c0 (patch) | |
tree | 444674472fa1a1d4e42743056ea4ee1872a916f7 /Doc/library/tracemalloc.rst | |
parent | a5062c5d81ba4d955edba55ff74d63110f1004a4 (diff) | |
download | cpython-5362abf4ec1f7fe6491b605fb1b007b62c0f53c0.zip cpython-5362abf4ec1f7fe6491b605fb1b007b62c0f53c0.tar.gz cpython-5362abf4ec1f7fe6491b605fb1b007b62c0f53c0.tar.bz2 |
Issue #19818: tracemalloc, the number of frame limit cannot be zero anymore
Diffstat (limited to 'Doc/library/tracemalloc.rst')
-rw-r--r-- | Doc/library/tracemalloc.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst index 82d997a..d406782 100644 --- a/Doc/library/tracemalloc.rst +++ b/Doc/library/tracemalloc.rst @@ -391,9 +391,9 @@ Filter 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 |