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 yorkie
Recipients yorkie
Date 2019-12-26.11:25:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1577359505.03.0.0054873610685.issue39138@roundup.psfhosted.org>
In-reply-to
Content
Update the example:

```
PyCapsule* cap = PyCapsule_New("foobar");
PyObject_SetAttrString(module1, cap->name, cap);
PyObject_SetAttrString(module2, cap->name, cap);

PyCapsule_Import("module1.foobar", 0);
PyCapsule_Import("module2.foobar", 0);
```
History
Date User Action Args
2019-12-26 11:25:05yorkiesetrecipients: + yorkie
2019-12-26 11:25:05yorkiesetmessageid: <1577359505.03.0.0054873610685.issue39138@roundup.psfhosted.org>
2019-12-26 11:25:05yorkielinkissue39138 messages
2019-12-26 11:25:04yorkiecreate