diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-12-08 11:39:24 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-12-08 11:39:24 (GMT) |
commit | 8e18fc8c0b8f9daa13d62c0b674ca5872c6a3b4c (patch) | |
tree | d62ac2d3bcbf0e5a84a2aef1caaa86f1b7c44ce4 /Misc | |
parent | c990f3b167fab45ff48fd6e7083e68bb44140b82 (diff) | |
download | cpython-8e18fc8c0b8f9daa13d62c0b674ca5872c6a3b4c.zip cpython-8e18fc8c0b8f9daa13d62c0b674ca5872c6a3b4c.tar.gz cpython-8e18fc8c0b8f9daa13d62c0b674ca5872c6a3b4c.tar.bz2 |
Issue #15209: Clarify exception chaining description
- not allowed when implicitly re-raised the current exception
- last exception raised is always displayed last
- attempt to make it clearer when/if cause and context are shown
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -322,6 +322,9 @@ Tools/Demos Documentation ------------- +- Issue #15209: Clarify exception chaining description in exceptions module + documentation + - Issue #15990: Improve argument/parameter documentation. - Issue #16209: Move the documentation for the str built-in function to a new |