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 colesbury
Recipients colesbury, vstinner
Date 2020-02-06.22:14:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581027250.42.0.173896186519.issue39571@roundup.psfhosted.org>
In-reply-to
Content
Alternatively I think you can just remove the typedef from Include/cpython/object.h since Include/object.h is always included first. i.e.:

typedef struct _typeobject {
  ...
} PyTypeObject;

to simply

struct _typeobject {
  ...
};
History
Date User Action Args
2020-02-06 22:14:10colesburysetrecipients: + colesbury, vstinner
2020-02-06 22:14:10colesburysetmessageid: <1581027250.42.0.173896186519.issue39571@roundup.psfhosted.org>
2020-02-06 22:14:10colesburylinkissue39571 messages
2020-02-06 22:14:10colesburycreate