The following code: ``` if None: try: pass except: pass else: pass ``` is indented to this: ``` if None: try: pass except: pass else: pass ``` This changes the semantics of already correctly-indented code.