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 eryksun
Recipients and, docs@python, eryksun, ezio.melotti, rhettinger, zach.ware
Date 2014-06-02.07:34:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401694453.0.0.341030596727.issue21611@psf.upfronthosting.co.za>
In-reply-to
Content
The constructor tries __trunc__ (truncate toward 0) if __int__ isn't defined. If __trunc__ doesn't return an instance of int, it calls the intermediate result's __int__ method. In terms of the numbers ABCs, numbers.Real requires __trunc__, which should return a numbers.Integral, which requires __int__. 

The special methods __trunc__, __floor__, and __ceil__ aren't documented in the language reference. They're mentioned briefly in the docs for the math functions trunc, floor, and ceil.
History
Date User Action Args
2014-06-02 07:34:13eryksunsetrecipients: + eryksun, rhettinger, ezio.melotti, docs@python, zach.ware, and
2014-06-02 07:34:13eryksunsetmessageid: <1401694453.0.0.341030596727.issue21611@psf.upfronthosting.co.za>
2014-06-02 07:34:12eryksunlinkissue21611 messages
2014-06-02 07:34:12eryksuncreate