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 tim.peters
Recipients PedanticHacker, Stefan Pochmann, mark.dickinson, mcognetta, rhettinger, serhiy.storchaka, tim.peters
Date 2021-12-23.22:28:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1640298483.33.0.657612856975.issue37295@roundup.psfhosted.org>
In-reply-to
Content
Please don't use "long long". It usually introduces platform dependence where none is intended, or helpful. PEP 7 requires that the compiler in use supply the fixed-width integer types defined by C99's stdint.h[1]. These are:

int8_t
int16_t
int32_t
int64_t
uint8_t
uint16_t
uint32_t
uint64_t

This has been required since Python 3.6. There is no reason not to use them.

[1] https://www.python.org/dev/peps/pep-0007/#c-dialect
History
Date User Action Args
2021-12-23 22:28:03tim.peterssetrecipients: + tim.peters, rhettinger, mark.dickinson, serhiy.storchaka, PedanticHacker, mcognetta, Stefan Pochmann
2021-12-23 22:28:03tim.peterssetmessageid: <1640298483.33.0.657612856975.issue37295@roundup.psfhosted.org>
2021-12-23 22:28:03tim.peterslinkissue37295 messages
2021-12-23 22:28:03tim.peterscreate