pseudoPython

Michael Chermside mcherm at mcherm.com
Wed Mar 26 13:40:06 EST 2003


I found everything quite readable EXCEPT the line continuations.
I'd probably try indenting your line continuations. For example:


    line 1 of code:
        line 2 of code
        line 3 of code\
        looks like line 4
        actual line 4 of code


could be improved with either of these:

    line 1 of code:
        line 2 of code
        line 3 of code\
clearly a continuation
        actual line 4 of code


    line 1 of code:
        line 2 of code
        line 3 of code\
            clearly subsidiary to line 3
        actual line 4 of code

I personally prefer the last of these.

-- Michael Chermside






More information about the Python-list mailing list