summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.5.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-09-29 15:25:00 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-09-29 15:25:00 (GMT)
commitc31e6227f94c2bb0290336c739873173672a8991 (patch)
treed0ae5b35cf326fa9605608f0860d6789bc115d78 /Doc/whatsnew/3.5.rst
parent4d75a01798cf0ff112335804382bd4bf50f7bf78 (diff)
downloadcpython-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/whatsnew/3.5.rst')
-rw-r--r--Doc/whatsnew/3.5.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 2e183a9..5c2be47 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -134,6 +134,13 @@ New Modules
Improved Modules
================
+code
+----
+
+* The :func:`code.InteractiveInterpreter.showtraceback` method now prints
+ the full chained traceback, just like the interactive interpreter
+ (contributed by Claudiu.Popa in :issue:`17442`).
+
compileall
----------