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 mark.dickinson
Recipients andymaier, belopolsky, docs@python, eric.araujo, mark.dickinson
Date 2014-07-07.18:05:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404756331.52.0.918973864933.issue10289@psf.upfronthosting.co.za>
In-reply-to
Content
Should the Python 2.7 delegation of `round` to `__float__` for its input also be described as part of this issue?

>>> class A(object):
...     def __float__(self): return 1729.1
... 
>>> round(A())
1729.0
History
Date User Action Args
2014-07-07 18:05:31mark.dickinsonsetrecipients: + mark.dickinson, belopolsky, eric.araujo, docs@python, andymaier
2014-07-07 18:05:31mark.dickinsonsetmessageid: <1404756331.52.0.918973864933.issue10289@psf.upfronthosting.co.za>
2014-07-07 18:05:31mark.dickinsonlinkissue10289 messages
2014-07-07 18:05:31mark.dickinsoncreate