i would suggest overloading the 'with', 'as' combo<div><br></div><div>c = sqrt(a*a + b*b) with:</div><div>    get_a(), get_b() as a, b</div><div><br></div><div>or</div><div><br></div><div><br></div><div><div>

c = sqrt(a*a + b*b) with:</div><div>    get_a() as a</div><div>    get_b() as b</div></div><div><br></div><div><br></div><div>it reads well and plus it follows since this statement acts similarly to a regular with and as statement with the behavior of the context manager being (in psudocode): </div>

<div>set up: store original value of variable if any and set variable to new value.</div><div>tear down: set value back to original or delete from local namespace if it never had one</div><div><br></div><div>additionally we do not need to introduce any new keywords</div>

<div><br></div><div>any way that this is implemented though it would be quite useful</div><div><br><div class="gmail_quote">On Tue, Jul 20, 2010 at 2:35 PM, George Sakkis <span dir="ltr"><<a href="mailto:george.sakkis@gmail.com">george.sakkis@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On Tue, Jul 20, 2010 at 8:29 PM, Daniel Stutzbach<br>
<<a href="mailto:daniel@stutzbachenterprises.com">daniel@stutzbachenterprises.com</a>> wrote:<br>
<br>
> On Tue, Jul 20, 2010 at 1:16 PM, Guido van Rossum <<a href="mailto:guido@python.org">guido@python.org</a>> wrote:<br>
>><br>
>> Given the large number of Python users familiar with SQL compared to<br>
>> those familiar with Haskell, I think we'd do wise to pick a different<br>
>> keyword instead of 'where'. I can't think of one right now though.<br>
><br>
> Taking a cue from mathematics, how about "given"?<br>
><br>
> c = sqrt(a*a + b*b) given:<br>
>     a = retrieve_a()<br>
>     b = retrieve_b()<br>
<br>
</div>Or if we'd rather overload an existing keyword than add a new one,<br>
"with" reads well too.<br>
<font color="#888888"><br>
George<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/python-ideas" target="_blank">http://mail.python.org/mailman/listinfo/python-ideas</a><br>
</div></div></blockquote></div><br></div>