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 alexander256
Recipients alexander256
Date 2011-08-24.12:31:03
SpamBayes Score 1.3053289e-05
Marked as misclassified No
Message-id <1314189064.26.0.312921037596.issue12831@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

2to3 is a great tool, but I think I found one case it doesn't catch, which is this change:

-        half = self.maxstars / 2
+        half = self.maxstars // 2

"/ 2" is an integer division, so it should be "// 3" in Python 3.

Thanks.
History
Date User Action Args
2011-08-24 12:31:04alexander256setrecipients: + alexander256
2011-08-24 12:31:04alexander256setmessageid: <1314189064.26.0.312921037596.issue12831@psf.upfronthosting.co.za>
2011-08-24 12:31:03alexander256linkissue12831 messages
2011-08-24 12:31:03alexander256create