Be gentle with me....

Fredrik Lundh fredrik at pythonware.com
Tue Dec 7 08:43:55 EST 1999


ajmayo at my-deja.com wrote:
>
> begin
>    if something then
>        begin
>            more code with more nested blocks...
>        end
>    end if
> end

that's not python.  this is python:

>    if something:
>        more code with more nested blocks...

> could be output as a 'one liner' when producing dynamic client-side
> code from the server. It looks to me like you have to (a) include the
> line separators (b) use n spaces at the start of each block at level n.
> This is just plain wasteful of communication line bandwidth.

what packet size are you using on your
internet?

</F>





More information about the Python-list mailing list