Changes between Version 22 and Version 23 of DevNotes/DevGuide/CodingRules
- Timestamp:
- May 30, 2016 9:24:45 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CodingRules
v22 v23 125 125 * Exceptions should not be used for flow control, unless there is a very good reason for it 126 126 * Error codes from a method should never be returned - use exceptions 127 * Never use a blank except: statement since it interferes with KeyboardInterrupt. At a minimum, use except Exception:.127 * Never use a blank except: statement since it interferes with !KeyboardInterrupt. At a minimum, use except Exception:. 128 128 129 129