Changes between Version 22 and Version 23 of DevNotes/DevGuide/CodingRules


Ignore:
Timestamp:
May 30, 2016 7:24:45 AM (8 years ago)
Author:
wojciech
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CodingRules

    v22 v23  
    125125    * Exceptions should not be used for flow control, unless there is a very good reason for it 
    126126    * 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:. 
    128128 
    129129