All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 # These brackets are redundant, therefore remove.
4 except (AttributeError) as err:
7 # This is tuple of exceptions.
8 # Although this could be replaced with just the exception,
9 # we do not remove brackets to preserve AST.
12 except (AttributeError,) as err:
15 # This is a tuple of exceptions. Do not remove brackets.
18 except (AttributeError, ValueError) as err:
24 except (some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error) as err:
29 except (some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error,) as err:
34 except (some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error, some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error) as err:
38 # These brackets are redundant, therefore remove.
41 except AttributeError as err:
44 # This is tuple of exceptions.
45 # Although this could be replaced with just the exception,
46 # we do not remove brackets to preserve AST.
49 except (AttributeError,) as err:
52 # This is a tuple of exceptions. Do not remove brackets.
55 except (AttributeError, ValueError) as err:
62 some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error
69 some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error,
76 some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error,
77 some.really.really.really.looooooooooooooooooooooooooooooooong.module.over89.chars.Error,