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 serhiy.storchaka
Recipients Devin Jeanpierre, benjamin.peterson, josh.r, mark.dickinson, pitrou, serhiy.storchaka, vstinner
Date 2017-03-28.06:36:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490683014.51.0.739960139735.issue17870@psf.upfronthosting.co.za>
In-reply-to
Content
The patch adds too much code, but there is very little need of new feature. In all cases where PyLong_FromLong() and PyLong_FromLongLong() are used conditionally, PyLong_FromLongLong() can be used unconditionally. PyLong_FromLong() is used only because the support of "long long" was optional and for optimisation.

Actually there is not supported platform that can't manage with long long and needs intmax_t. We can't test the new feature. While it can be useful in future, I think this is not a time for adding it.
History
Date User Action Args
2017-03-28 06:36:54serhiy.storchakasetrecipients: + serhiy.storchaka, mark.dickinson, pitrou, vstinner, benjamin.peterson, Devin Jeanpierre, josh.r
2017-03-28 06:36:54serhiy.storchakasetmessageid: <1490683014.51.0.739960139735.issue17870@psf.upfronthosting.co.za>
2017-03-28 06:36:54serhiy.storchakalinkissue17870 messages
2017-03-28 06:36:54serhiy.storchakacreate