diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-07-24 14:36:21 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-07-24 14:36:21 (GMT) |
commit | c3f417dc47b3a9564608c98cd176c530d9ebdf09 (patch) | |
tree | 6a1c894fe313dcbcf82a4425704ad580bd9b45f6 /Misc | |
parent | c19bb3279cbb42c84a24255db48ee2d385bb8167 (diff) | |
download | cpython-c3f417dc47b3a9564608c98cd176c530d9ebdf09.zip cpython-c3f417dc47b3a9564608c98cd176c530d9ebdf09.tar.gz cpython-c3f417dc47b3a9564608c98cd176c530d9ebdf09.tar.bz2 |
Issue #24695: Fix a regression in traceback.print_exception()
If exc_traceback is None we shouldn't print a traceback header
like described in the documentation.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -28,6 +28,10 @@ Core and Builtins Library ------- +- Issue #24695: Fix a regression in traceback.print_exception(). If + exc_traceback is None we shouldn't print a traceback header like described + in the documentation. + - Issue #24620: Random.setstate() now validates the value of state last element. - Issue #22485: Fixed an issue that caused `inspect.getsource` to return incorrect |