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 jeffr@livedata.com
Recipients jeffr@livedata.com, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-08-19.15:54:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566230046.05.0.52889742185.issue37886@roundup.psfhosted.org>
In-reply-to
Content
Editing one line in structseq.h seems to fix the issue.

I changed this

extern char* PyStructSequence_UnnamedField;

to

PyAPI_DATA(char*) PyStructSequence_UnnamedField;

rebuilt, and now my C extension can use PyStructSequence_UnnamedField.
History
Date User Action Args
2019-08-19 15:54:06jeffr@livedata.comsetrecipients: + jeffr@livedata.com, paul.moore, tim.golden, zach.ware, steve.dower
2019-08-19 15:54:06jeffr@livedata.comsetmessageid: <1566230046.05.0.52889742185.issue37886@roundup.psfhosted.org>
2019-08-19 15:54:06jeffr@livedata.comlinkissue37886 messages
2019-08-19 15:54:05jeffr@livedata.comcreate