New submission from Charles McCreary <[EMAIL PROTECTED]>: 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! ---------- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) messages: 66038 nosy: collinwinter, crmccreary severity: normal status: open title: 2to3 converts long(itude) argument to int versions: Python 3.0 __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2734> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com