News entry for no-bare-except

This commit is contained in:
Oleh Prypin 2016-07-01 18:39:23 +03:00
parent aace5d77c0
commit 38e931b82e

15
news/no-bare-except.rst Normal file
View file

@ -0,0 +1,15 @@
**Added:** None
**Changed:** None
**Deprecated:** None
**Removed:** None
**Fixed:**
* Bare ``except:`` was replaced with ``except Exception`` to prevent
accidentally catching utility exceptions such as KeyboardInterrupt, which
caused unexpected problems like printing out the raw $PROMPT string.
**Security:** None