cpython: 86d062edb6ab (original) (raw)

Mercurial > cpython

changeset 102673:86d062edb6ab

Issue #26823: fix traceback abbreviation docs - be clear builtin traceback display was also updated - show example output in What's New - fix versionadded markup [#26823]

Nick Coghlan ncoghlan@gmail.com
date Tue, 16 Aug 2016 10:58:14 +1000
parents 705416c5909e
children d277870a6012
files Doc/library/traceback.rst Doc/whatsnew/3.6.rst
diffstat 2 files changed, 25 insertions(+), 6 deletions(-)[+] [-] Doc/library/traceback.rst 5 Doc/whatsnew/3.6.rst 26

line wrap: on

line diff

--- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -302,9 +302,8 @@ capture data for later printing in a lig repetitions are shown, followed by a summary line stating the exact number of further repetitions.

-

:class:FrameSummary Objects

--- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -207,7 +207,12 @@ Example of fatal error on buffer overflo Other Language Changes ====================== -* None yet. +Some smaller changes made to the core Python language are: + +* Long sequences of repeated traceback lines are now abbreviated as

+ (Contributed by Emanuel Barry in :issue:26823.)