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 Mark.Shannon
Recipients Mark.Shannon
Date 2021-08-18.10:25:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629282332.14.0.448234766884.issue44946@roundup.psfhosted.org>
In-reply-to
Content
"Medium" integers are those with a single internal digit or zero.
Medium integers are integers in the range -2**30 to +2**30 on 64 bit machines.
"Small" integers, -5 to 256 are cached, but are represented as medium integers internally.

To a good approximation, all integers are "medium".

However, we make little effort to exploit that fact in the code for binary operations, which are very common operations on integers.
History
Date User Action Args
2021-08-18 10:25:32Mark.Shannonsetrecipients: + Mark.Shannon
2021-08-18 10:25:32Mark.Shannonsetmessageid: <1629282332.14.0.448234766884.issue44946@roundup.psfhosted.org>
2021-08-18 10:25:32Mark.Shannonlinkissue44946 messages
2021-08-18 10:25:32Mark.Shannoncreate