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 eric.smith
Recipients Dreeseaw, eric.smith, rhettinger
Date 2022-03-02.15:49:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1646236174.37.0.609857657191.issue46900@roundup.psfhosted.org>
In-reply-to
Content
From https://github.com/python/cpython/blob/main/Python/marshal.c:

41 is:

#define TYPE_SMALL_TUPLE        ')'

The difference between 41 and 169 is 128:

#define FLAG_REF                '\x80' /* with a type, add obj to index */

So the difference is the FLAG_REF bit being set. I'm not sure if that helps you or not.

In any event, this doesn't look like a bug. You might want to ask on python-list or Stack Overflow for more help.
History
Date User Action Args
2022-03-02 15:49:34eric.smithsetrecipients: + eric.smith, rhettinger, Dreeseaw
2022-03-02 15:49:34eric.smithsetmessageid: <1646236174.37.0.609857657191.issue46900@roundup.psfhosted.org>
2022-03-02 15:49:34eric.smithlinkissue46900 messages
2022-03-02 15:49:34eric.smithcreate