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 methane
Recipients libcthorne, martin.panter, methane
Date 2018-06-06.06:32:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528266765.38.0.592728768989.issue33578@psf.upfronthosting.co.za>
In-reply-to
Content
> `MultibyteCodec_State` can occupy 8 bytes, and `pending` can occupy 2 bytes (MAXENCPENDING), we get a total of 10 bytes which I think exceeds what a PyLong can represent.

PyLong is "long integer", aka "big integer", not C's long type.
https://docs.python.org/3.6/c-api/long.html

You can encode 12 bytes into single long object.
History
Date User Action Args
2018-06-06 06:32:45methanesetrecipients: + methane, martin.panter, libcthorne
2018-06-06 06:32:45methanesetmessageid: <1528266765.38.0.592728768989.issue33578@psf.upfronthosting.co.za>
2018-06-06 06:32:45methanelinkissue33578 messages
2018-06-06 06:32:45methanecreate