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 dongjs
Recipients dongjs
Date 2019-11-29.10:08:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1575022096.89.0.81734853604.issue38939@roundup.psfhosted.org>
In-reply-to
Content
>>> 17 / 3  # classic division returns a float
5.666666666666667

this example is error 

what i test is below

>>> 17.0 / 3
5.666666666666667
>>> 17 / 3
5
History
Date User Action Args
2019-11-29 10:08:16dongjssetrecipients: + dongjs
2019-11-29 10:08:16dongjssetmessageid: <1575022096.89.0.81734853604.issue38939@roundup.psfhosted.org>
2019-11-29 10:08:16dongjslinkissue38939 messages
2019-11-29 10:08:16dongjscreate