Mark Dickinson added the comment:

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

----------
nosy: +mark.dickinson

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10289>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to