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 loewis
Recipients loewis
Date 2008-11-25.03:34:59
SpamBayes Score 0.0023984092
Marked as misclassified No
Message-id <1227584100.69.0.467300606642.issue4423@psf.upfronthosting.co.za>
In-reply-to
Content
In 2to3 (from the py3k branch, as of r67372) translates the fragment

def f():
    commands = foo()
    commands.sort()

to

def f():
    commands = foo()
    subprocess.sort()
History
Date User Action Args
2008-11-25 03:35:01loewissetrecipients: + loewis
2008-11-25 03:35:00loewissetmessageid: <1227584100.69.0.467300606642.issue4423@psf.upfronthosting.co.za>
2008-11-25 03:35:00loewislinkissue4423 messages
2008-11-25 03:34:59loewiscreate