Issue 3723: Fixed initialization of subinterpreters

The patch fixes several issues with Py_NewInterpreter as well as the demo for multiple subinterpreters.
Most of the patch was written by MvL with help from Benjamin, Amaury and me. Graham Dumpleton has verified that this patch fixes an issue with mod_wsgi.
This commit is contained in:
Christian Heimes 2008-10-30 21:48:26 +00:00
parent 5833a2f6fd
commit 6a27efa2d3
9 changed files with 43 additions and 3 deletions

View file

@ -27,6 +27,7 @@ typedef struct _is {
PyObject *codec_search_path;
PyObject *codec_search_cache;
PyObject *codec_error_registry;
int codecs_initialized;
#ifdef HAVE_DLOPEN
int dlopenflags;