why no "do : until"?

William Sonna wsonna at attgloball.net
Sat Dec 30 17:59:48 EST 2000


On Sun, 30 Dec 3900 03:00:05, henry_crun3583 at my-deja.com wrote:

> Can someone point me at an explanation of the logic for not having
> do:
> until

Its a design flaw in Python.

There is no rational reason not to have it. Anyone who has worked with
Pascal or Rexx (or even regular expressions) knows that "one iteration
plus zero or more iterations" is NOT as good as "one or more 
iterations", because the resulting code is sloppier.

So while there are workarounds for this bit of illogic, they are, 
nonetheless workarounds.




More information about the Python-list mailing list