rusi wrote:
> The fidgetiness is entirely due to python not allowing C-style loops
> like these:
> >>> while ((c=getchar()!= EOF) { ... }
for c in iter(getchar, EOF):
...
> Clearly the fidgetiness is there as before and now with extra coroutine
> plumbing
Hmm, very funny...
--
http://mail.python.org/mailman/listinfo/python-list
