Changes between Version 6 and Version 13 of Ticket #11310
- Timestamp:
- Jun 21, 2012, 10:39:16 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11310
-
Property
Summary
changed from
Get rid of some bare "except:" statements
toMonkey-patch catchall `except:` statements so they at least don't catch `KeyboardInterrupt` errors
-
Property
Summary
changed from
-
Ticket #11310 – Description
v6 v13 3 3 except: 4 4 }}} 5 This is bad because it catches non-errors like `KeyboardInterrupt` and `StopIteration`.5 This is bad because it catches non-errors like `KeyboardInterrupt`. 6 6 7 7 ----