commit | b9030f4f0d566c8ae2eeb28ed858f02f3b853ae7 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon May 12 00:41:23 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Mon May 12 00:41:23 2008 +0000 |
tree | 526da2f8d50d0abaebcd5177f203adae5df7ee43 | |
parent | 42bfa90f02f0055ea163df9103ebed873ee1dbb0 [diff] [blame] |
#2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate
diff --git a/Misc/NEWS b/Misc/NEWS index 252dbe3..7384c9d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -17,6 +17,9 @@ - Issue #2790: sys.flags was not properly exposing its bytes_warning attribute. +- Issue #2196: hasattr now lets exceptions which do not inherit Exception + (KeyboardInterrupt, and SystemExit) propagate instead of ignoring them + Extension Modules -----------------