New submission from Julian Berman <[email protected]>:
Using multiple `with` statements across multiple lines does not support using
parens to break them up:
with (open("a_really_long_foo") as foo,
open("a_really_long_bar") as bar):
pass
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "demo.py", line 19
with (open("a_really_long_foo") as foo,
^
SyntaxError: invalid syntax
Also, without convoluting things, import also does not support doing so, and is
the only other example I can think of of a compound statement that forces you
to either be redundant or bite your teeth and use \, despite the fact that PEP
328 gave us parens for from imports.
(I did not find a discussion as to why import didn't grow it as well, so please
correct me as I'm sure it must have been discussed before).
It's understandably a lot rarer to need multiple lines when importing, but it'd
be nice if all compound statements uniformly allowed the same continuation
syntax.
----------
components: Interpreter Core
messages: 142411
nosy: Julian
priority: normal
severity: normal
status: open
title: Multiple context expressions do not support parentheses for continuation
across lines
type: behavior
versions: Python 2.7, Python 3.3
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue12782>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com