Changes between Initial Version and Version 5 of Ticket #11310
- Timestamp:
- Jun 21, 2012, 7:59:47 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11310
- Property Cc kini added
-
Property
Authors
changed from
to
Jeroen Demeyer
-
Ticket #11310 – Description
initial v5 1 There are a lot places in the Sage library which use 2 {{{ 3 except: 4 }}} 5 This is bad because it catches non-errors like `KeyboardInterrupt` and `StopIteration`. 6 7 The patch [attachent:11310_auto.patch] has ben auto-generated by replacing all instances of 8 {{{ 9 except: 10 }}} 11 by 12 {{{ 13 except StandardError: 14 }}} 15 and all instances of 16 {{{ 17 raise Exeption 18 }}} 19 by 20 {{{ 21 raise RuntimeError 22 }}} 23 24 Then the patch [attachment:11310.patch] does some small miscellaneous fixes. 25 26 '''Apply''' all patches.