See Pep 315, which is still open, and targeted at 2.5.
It survived the recent spate of PEP closings and rejections.

http://www.python.org/peps/pep-0315.html

John Roth

"Remi Villatel" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> Hi there,
>
> There is always a "nice" way to do things in Python but this time I can't 
> find one.
>
> What I'm trying to achieve is a conditionnal loop of which the condition 
> test would be done at the end so the loop is executed at least once. It's 
> some way the opposite of "while".
>
> So far, all I got is:
>
> while True:
> some(code)
> if final_condition is True:
> break
> #
> #
>
> What I don't find so "nice" is to have to build an infinite loop only to 
> break it.
>
> Is there a better recipe?
>
> -- 
> ==================
> Remi Villatel
> [EMAIL PROTECTED]
> ================== 

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to