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 # Only remove tuple brackets after `for`
2 for (k, v) in d.items():
5 # Don't touch tuple brackets after `in`
6 for module in (core, _unicodefun):
7 if hasattr(module, "_verify_python3_env"):
8 module._verify_python3_env = lambda: None
10 # Brackets remain for long for loop lines
11 for (why_would_anyone_choose_to_name_a_loop_variable_with_a_name_this_long, i_dont_know_but_we_should_still_check_the_behaviour_if_they_do) in d.items():
14 for (k, v) in dfkasdjfldsjflkdsjflkdsjfdslkfjldsjfgkjdshgkljjdsfldgkhsdofudsfudsofajdslkfjdslkfjldisfjdffjsdlkfjdlkjjkdflskadjldkfjsalkfjdasj.items():
17 # Test deeply nested brackets
18 for (((((k, v))))) in d.items():
22 # Only remove tuple brackets after `for`
23 for k, v in d.items():
26 # Don't touch tuple brackets after `in`
27 for module in (core, _unicodefun):
28 if hasattr(module, "_verify_python3_env"):
29 module._verify_python3_env = lambda: None
31 # Brackets remain for long for loop lines
33 why_would_anyone_choose_to_name_a_loop_variable_with_a_name_this_long,
34 i_dont_know_but_we_should_still_check_the_behaviour_if_they_do,
42 dfkasdjfldsjflkdsjflkdsjfdslkfjldsjfgkjdshgkljjdsfldgkhsdofudsfudsofajdslkfjdslkfjldisfjdffjsdlkfjdlkjjkdflskadjldkfjsalkfjdasj.items()
46 # Test deeply nested brackets
47 for k, v in d.items():