diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-09-29 15:25:00 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-09-29 15:25:00 (GMT) |
commit | c31e6227f94c2bb0290336c739873173672a8991 (patch) | |
tree | d0ae5b35cf326fa9605608f0860d6789bc115d78 /Doc/library/code.rst | |
parent | 4d75a01798cf0ff112335804382bd4bf50f7bf78 (diff) | |
download | cpython-c31e6227f94c2bb0290336c739873173672a8991.zip cpython-c31e6227f94c2bb0290336c739873173672a8991.tar.gz cpython-c31e6227f94c2bb0290336c739873173672a8991.tar.bz2 |
#17442: Add chained traceback support to InteractiveInterpreter.
Patch by Claudiu Popa.
Diffstat (limited to 'Doc/library/code.rst')
-rw-r--r-- | Doc/library/code.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/code.rst b/Doc/library/code.rst index 99bdedc..275201c 100644 --- a/Doc/library/code.rst +++ b/Doc/library/code.rst @@ -114,6 +114,9 @@ Interactive Interpreter Objects because it is within the interpreter object implementation. The output is written by the :meth:`write` method. + .. versionchanged:: 3.5 The full chained traceback is displayed instead + of just the primary traceback. + .. method:: InteractiveInterpreter.write(data) |