In article <[email protected]>, "albert visser" <[email protected]> wrote:
> I like being able to do e.g.
>
> with open('some_file') as _in, open('another_file', 'w') as _out:
It would be nice if you could write that as:
with open('some_file'), open('another_file, 'w') as _in, _out:
--
http://mail.python.org/mailman/listinfo/python-list
