This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author aronacher
Recipients aronacher, benjamin.peterson, collinwinter, hawking, terry.reedy
Date 2008-12-08.11:39:50
SpamBayes Score 9.9541595e-08
Marked as misclassified No
Message-id <1228736391.85.0.256717771972.issue3563@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2008-12-08 11:39:51aronachersetrecipients: + aronacher, collinwinter, terry.reedy, hawking, benjamin.peterson
2008-12-08 11:39:51aronachersetmessageid: <1228736391.85.0.256717771972.issue3563@psf.upfronthosting.co.za>
2008-12-08 11:39:51aronacherlinkissue3563 messages
2008-12-08 11:39:50aronachercreate