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 malin
Recipients malin, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-11-10.07:33:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1604993594.99.0.772982766539.issue42304@roundup.psfhosted.org>
In-reply-to
Content
C type `long` is 4-byte integer in 64-bit Windows build (MSVC behavior). [1]
In other compilers, `long` is 8-byte integer in 64-bit build.

This leads to a bit unnecessary performance waste, issue38252 fixed this problem in a situation.

Search `SIZEOF_LONG` in CPython code, there's still a few long type waste.

Novices are welcome to try contribution.

[1] https://stackoverflow.com/questions/384502
History
Date User Action Args
2020-11-10 07:33:15malinsetrecipients: + malin, paul.moore, tim.golden, zach.ware, steve.dower
2020-11-10 07:33:14malinsetmessageid: <1604993594.99.0.772982766539.issue42304@roundup.psfhosted.org>
2020-11-10 07:33:14malinlinkissue42304 messages
2020-11-10 07:33:14malincreate