Edgewall Software

Changes between Version 24 and Version 27 of Ticket #9536


Ignore:
Timestamp:
Feb 23, 2011, 10:39:03 PM (13 years ago)
Author:
Remy Blank
Comment:

Second batch applied in [10594].

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9536 – Description

    v24 v27  
    22
    33 * ~~Use context managers and the `with` statement for: database transactions, handling locks, handling files.~~
    4  * Use `... if ... else ...` expressions instead of the more error-prone `... and ... or ...`.
     4 * ~~Use `... if ... else ...` expressions instead of the more error-prone `... and ... or ...`.~~
    55 * Use `try: except: finally:` instead of nested `try: finally:` and `try: except:`.
    66 * Use `except Exception:` instead of `except:`.