with some_darn_object.my_long_named_method_on_it(argument='yep') as foo, \a_different_darn_object.and_yet_another_method() as bar:
Another demonstration from the REPL:File "<stdin>", line 1with (some_darn_object.my_long_named_method_on_it(argument='yep') as foo,^SyntaxError: invalid syntax
I wish this syntax to be legal.Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more information.>>> with (x as y, z as w): passFile "<stdin>", line 1with (x as y, z as w): pass^SyntaxError: invalid syntax