[Python-3000] Stackable Blocks

Guido van Rossum guido at python.org
Fri Apr 28 22:03:49 CEST 2006


On 4/23/06, Crutcher Dunnavant <crutcher at gmail.com> wrote:
> So for instance this:
>
> for file in open_files:
>   if file.readable():
>     ...
>
> can be spelled like this.
>
> for file in open_files: if file.readable():
>   ...

Since this discussion is still going on, let me add my -1 in the hope
that this thread will die. It ain't gonna happen; it reduces code
readability.

--
--Guido van Rossum (home page: http://www.python.org/~guido/)


More information about the Python-3000 mailing list