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 schuppenies
Recipients exarkun, gvanrossum, rhettinger, schuppenies
Date 2008-03-02.15:59:38
SpamBayes Score 0.020574206
Marked as misclassified No
Message-id <1204473583.33.0.198736498402.issue687648@psf.upfronthosting.co.za>
In-reply-to
Content
The attached patch applies floor division to all classic divisions where
only integer input was used, and true division where at least on input
parameter was of non-integral type. 
In cmptree.py I replaced "int(size/dt)" with "size//dt" as it has the
same semantic but I thought it to be more explicit.
History
Date User Action Args
2008-03-02 15:59:43schuppeniessetspambayes_score: 0.0205742 -> 0.020574206
recipients: + schuppenies, gvanrossum, rhettinger, exarkun
2008-03-02 15:59:43schuppeniessetspambayes_score: 0.0205742 -> 0.0205742
messageid: <1204473583.33.0.198736498402.issue687648@psf.upfronthosting.co.za>
2008-03-02 15:59:42schuppenieslinkissue687648 messages
2008-03-02 15:59:42schuppeniescreate