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.

作者 serhiy.storchaka
收信人 alex, barry, docs@python, eric.snow, ethan.furman, mark.dickinson, ncoghlan, serhiy.storchaka, vstinner
日期 2013-08-21.11:32:36
SpamBayes Score -1.0
Marked as misclassified
Message-id <1377084756.17.0.93479943928.issue17576@psf.upfronthosting.co.za>
In-reply-to
内容
And yet one nitpick. For int subclasses which doesn't overload the __int__ method the patch calls default int.__int__ which creates a copy of int object. This is redundant in PyLong_As* functions because they only extract C int value and drop Python int object. So we can use int subclass object itself as good as int object.
历史
日期 用户 动作 参数
2013-08-21 11:32:36serhiy.storchaka修改recipients: + serhiy.storchaka, barry, mark.dickinson, ncoghlan, vstinner, alex, docs@python, ethan.furman, eric.snow
2013-08-21 11:32:36serhiy.storchaka修改messageid: <1377084756.17.0.93479943928.issue17576@psf.upfronthosting.co.za>
2013-08-21 11:32:36serhiy.storchaka链接issue17576 messages
2013-08-21 11:32:36serhiy.storchaka创建