> (I don't think this has been suggested yet.)
> 
>      while <enter_condition>, <exit_condition>:
>         <body>

This usage makes me uneasy, not the least because I don't understand why the
comma isn't creating a tuple.  That is, why whould

        while x, y:
                <body>

be any different from

        while (x,  y):
                <body>

?

My other concern is that <exit_condition> is evaluated out of sequence.



_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to