Javascript is turning into Python?!

Fredrik Lundh fredrik at pythonware.com
Sat Nov 4 02:29:54 EST 2006


Steve Holden wrote:

> Wouldn't that be
> 
>      with f() as x, g() as y:
>          blah(x, y)

or

     with f(), g() as x, y:
             pass

see guido's comment at the bottom of this page:

     http://effbot.org/pyref/with.htm

</F>




More information about the Python-list mailing list