Message353971
I've attached a reproduction case. Here's the setup.py that I used:
```
from distutils.core import Extension, setup
extension = Extension("breaky", ["breaky.c"])
setup(
name="tp_clear",
version="0.1.0",
ext_modules=[extension],
)
```
which I built and ran with:
```
python setup.py build_ext --inplace
python -c "import breaky, gc; a = breaky.Breaky(); a = 1"
``` |
|
Date |
User |
Action |
Args |
2019-10-04 20:41:49 | AWhetter | set | recipients:
+ AWhetter, vstinner, petr.viktorin, serhiy.storchaka |
2019-10-04 20:41:49 | AWhetter | set | messageid: <1570221709.51.0.649293827496.issue33714@roundup.psfhosted.org> |
2019-10-04 20:41:49 | AWhetter | link | issue33714 messages |
2019-10-04 20:41:49 | AWhetter | create | |
|