Sept. 1, 2013
8:06 p.m.
On Sun, 01 Sep 2013 16:02:33 -0400 Terry Reedy <tjreedy@udel.edu> wrote:
Speaking of which, it also doesn't work (well) with subinterpreters:
Could someone briefly explain 'subinterpreter' or point me somewhere in the docs? It appears throughout this thread but there is no index or glossary entry.
http://docs.python.org/dev/c-api/init.html#sub-interpreter-support Subinterpreters are a somewhat borderline feature that allows embedding applications to host multiple Python programs in a single process. A well-known example is mod_wsgi. Regards Antoine.