Tagged Questions
4
votes
2answers
248 views
Uniqueness of global Python objects void in sub-interpreters?
I have a question about inner-workings of Python sub-interpreter initialization (from Python/C API) and Python id() function. More precisely, about handling of global module objects in a WSGI Python ...
2
votes
1answer
676 views
What is the purpose of the sub-interpreter API in CPython?
I'm unclear on why the sub-interpreter API exists and why it's used in modules such as the mod_wsgi apache module. Is it mainly used for creating a security sandbox for different applications running ...