ericsnowcurrently / multi-core-python

Enabling CPython multi-core parallelism via subinterpreters.
BSD 3-Clause "New" or "Revised" License
245 stars 6 forks source link

GC tied to main interpreter #36

Closed ericsnowcurrently closed 4 years ago

ericsnowcurrently commented 6 years ago

https://bugs.python.org/issue24554

GC should happen when a subinterpreter is destroyed (GC currently tied to main interpreter context)

See also: https://github.com/GrahamDumpleton/mod_wsgi/issues/43 http://emptysqua.re/blog/a-normal-accident-in-python-and-mod-wsgi/

vstinner commented 4 years ago

I fixed https://bugs.python.org/issue36854 and https://bugs.python.org/issue24554

ericsnowcurrently commented 4 years ago

Thanks @vstinner!