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 crmccreary
Recipients collinwinter, crmccreary
Date 2008-05-01.19:20:45
SpamBayes Score 0.08493068
Marked as misclassified No
Message-id <1209669660.53.0.857681626906.issue2734@psf.upfronthosting.co.za>
In-reply-to
Content
The 2to3 converter converts variables named "long" to "int".
Original:
long is an argument (longitude)
def add_test_qtrmin(tdb, lat, long, area_id, call_center=""):

Converted:

def add_test_qtrmin(tdb, lat, int, area_id, call_center=""):

I can see what it is trying to do, but I definitely don't want this
behavior!
History
Date User Action Args
2008-05-01 19:21:02crmccrearysetspambayes_score: 0.0849307 -> 0.08493068
recipients: + crmccreary, collinwinter
2008-05-01 19:21:01crmccrearysetspambayes_score: 0.0849307 -> 0.0849307
messageid: <1209669660.53.0.857681626906.issue2734@psf.upfronthosting.co.za>
2008-05-01 19:20:58crmccrearylinkissue2734 messages
2008-05-01 19:20:57crmccrearycreate