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 ammar2
Recipients Nathan.Goldbaum, ammar2, mark.dickinson, steven.daprano, tim.peters
Date 2018-01-13.00:00:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515801618.74.0.467229070634.issue32543@psf.upfronthosting.co.za>
In-reply-to
Content
Looks like floor division for floats call into the divmod function, which has the same behavior:

>>> 0.9 .__divmod__(0.1)
(8.0, 0.09999999999999998)
History
Date User Action Args
2018-01-13 00:00:18ammar2setrecipients: + ammar2, tim.peters, mark.dickinson, steven.daprano, Nathan.Goldbaum
2018-01-13 00:00:18ammar2setmessageid: <1515801618.74.0.467229070634.issue32543@psf.upfronthosting.co.za>
2018-01-13 00:00:18ammar2linkissue32543 messages
2018-01-13 00:00:18ammar2create