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 petr.viktorin
Recipients ngie, petr.viktorin, serhiy.storchaka
Date 2020-03-05.02:48:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583376485.41.0.183284435668.issue39762@roundup.psfhosted.org>
In-reply-to
Content
No, in Python 2 the PyInt object (`int` in Python 2) always did fit into a C long -- that was the underlying storage. If it didn't fit, a PyLong object (`long` in Python 2) was used.

Python 3 doesn't have PyInt, it only has PyLong (`int` in Python 3).
History
Date User Action Args
2020-03-05 02:48:05petr.viktorinsetrecipients: + petr.viktorin, ngie, serhiy.storchaka
2020-03-05 02:48:05petr.viktorinsetmessageid: <1583376485.41.0.183284435668.issue39762@roundup.psfhosted.org>
2020-03-05 02:48:05petr.viktorinlinkissue39762 messages
2020-03-05 02:48:05petr.viktorincreate