Armin Ronacher <[EMAIL PROTECTED]> added the comment:

I would drop the prefix in that case or attach it to the sorted() call.

So from this code:

    x = foo()
    # perform sorting
    x.sort()

to

    # perform sorting
    x = sorted(foo())

Makes more sense than sticking it after the sorted() call like it
happens currently.  This should also fix the problem with outdented
statements such as except/finally.

----------
nosy: +aronacher

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3563>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to