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 yao_way
Recipients yao_way
Date 2020-12-30.17:31:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609349486.6.0.659948013801.issue42788@roundup.psfhosted.org>
In-reply-to
Content
There might be an issue with Python’s floor division:
Experienced Behavior: >>> (1 / 1) // 1 --> 1.0; >>> (0 / 1) // 1 --> 0.0
Expected Behavior: >>> (1 / 1) // 1 --> 1; >>> (0 / 1) // 1 --> 0
History
Date User Action Args
2020-12-30 17:31:26yao_waysetrecipients: + yao_way
2020-12-30 17:31:26yao_waysetmessageid: <1609349486.6.0.659948013801.issue42788@roundup.psfhosted.org>
2020-12-30 17:31:26yao_waylinkissue42788 messages
2020-12-30 17:31:26yao_waycreate