Zeljko Vrba wrote:

> But look at the following example:
>
> if a:
>   some_code1
> if b:
>   some_code2
>
> If I accidentaly delete if b:, then some_code2 gets under the if a: which is
> not intended.

not to mention that if you have

    if a:
        some_code1
        some_code2

and accidentally remove some_code2, it won't be executed at all !

do you often remove code by accident?  is this some vi-specific problem ?

</F>



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to