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.
  16 # as doesn't get confusing when unwrapped
 
  32 nested = {(1,2,3),(4,5,6),}
 
  33 nested_no_trailing_comma = {(1,2,3),(4,5,6)}
 
  34 nested_long_lines = ["aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb", "cccccccccccccccccccccccccccccccccccccccc", (1, 2, 3), "dddddddddddddddddddddddddddddddddddddddd"]
 
  37 ['ls', 'lsoneple/%s' % (foo,)]
 
  40 assert False, ("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa wraps %s" % bar)
 
  42 # looping over a 1-tuple should also not get wrapped
 
  45 for (x,) in (1,), (2,), (3,):
 
  50 division_result_tuple = (6/2,)
 
  51 print("foo %r", (foo.bar,))
 
  54     IGNORED_TYPES_FOR_ATTRIBUTE_CHECKING = (
 
  55         Config.IGNORED_TYPES_FOR_ATTRIBUTE_CHECKING
 
  56         | {pylons.controllers.WSGIController}
 
  60     ec2client.get_waiter('instance_stopped').wait(
 
  61         InstanceIds=[instance.id],
 
  65     ec2client.get_waiter("instance_stopped").wait(
 
  66         InstanceIds=[instance.id],
 
  67         WaiterConfig={"Delay": 5,},
 
  69     ec2client.get_waiter("instance_stopped").wait(
 
  70         InstanceIds=[instance.id], WaiterConfig={"Delay": 5,},
 
  89 # as doesn't get confusing when unwrapped
 
  90 from foo import xyzzy as magic
 
 109 nested_no_trailing_comma = {(1, 2, 3), (4, 5, 6)}
 
 110 nested_long_lines = [
 
 111     "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
 
 112     "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
 
 113     "cccccccccccccccccccccccccccccccccccccccc",
 
 115     "dddddddddddddddddddddddddddddddddddddddd",
 
 121 ["ls", "lsoneple/%s" % (foo,)]
 
 127     "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa wraps %s"
 
 131 # looping over a 1-tuple should also not get wrapped
 
 134 for (x,) in (1,), (2,), (3,):
 
 143 division_result_tuple = (6 / 2,)
 
 144 print("foo %r", (foo.bar,))
 
 147     IGNORED_TYPES_FOR_ATTRIBUTE_CHECKING = (
 
 148         Config.IGNORED_TYPES_FOR_ATTRIBUTE_CHECKING
 
 149         | {pylons.controllers.WSGIController}
 
 153     ec2client.get_waiter("instance_stopped").wait(
 
 154         InstanceIds=[instance.id], WaiterConfig={"Delay": 5,}
 
 156     ec2client.get_waiter("instance_stopped").wait(
 
 157         InstanceIds=[instance.id], WaiterConfig={"Delay": 5,},
 
 159     ec2client.get_waiter("instance_stopped").wait(
 
 160         InstanceIds=[instance.id], WaiterConfig={"Delay": 5,},