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 eric-talevich
Recipients aronacher, benjamin.peterson, collinwinter, crmccreary, eric-talevich, georg.brandl, retoo, robin.stocker
Date 2010-07-23.03:54:42
SpamBayes Score 0.02894224
Marked as misclassified No
Message-id <1279857285.11.0.68681334981.issue2734@psf.upfronthosting.co.za>
In-reply-to
Content
This issue still occurs when the name "long" is a function argument:

def double(long):
    return long * 2


2to3 converts it to:

def double(long):
    return int * 2


Should I file a new bug, or can someone reopen this?
History
Date User Action Args
2010-07-23 03:54:45eric-talevichsetrecipients: + eric-talevich, georg.brandl, collinwinter, benjamin.peterson, robin.stocker, aronacher, crmccreary, retoo
2010-07-23 03:54:45eric-talevichsetmessageid: <1279857285.11.0.68681334981.issue2734@psf.upfronthosting.co.za>
2010-07-23 03:54:42eric-talevichlinkissue2734 messages
2010-07-23 03:54:42eric-talevichcreate