Library
+- Functions in the os.spawn() family now release the global interpreter
+ lock around calling the platform spawn. They should always have done
+ this, but did not before 2.2c1. Multithreaded programs calling
+ an os.spawn function with P_WAIT will no longer block all Python threads
+ until the spawned program completes. It's possible that some programs
+ relies on blocking, although more likely by accident than by design.
+
- webbrowser defaults to netscape.exe on OS/2 now.
- Tix.ResizeHandle exposes detach_widget, hide, and show.
#ifdef HAVE_SPAWNV
static char posix_spawnv__doc__[] =
"spawnv(mode, path, args)\n\
-Execute an executable path with arguments, replacing current process.\n\
+Execute the program 'path' in a new process.\n\
\n\
mode: mode of process creation\n\
path: path of executable file\n\
if (mode == _OLD_P_OVERLAY)
mode = _P_OVERLAY;
+
+ Py_BEGIN_ALLOW_THREADS
spawnval = _spawnv(mode, path, argvlist);
-
+ Py_END_ALLOW_THREADS
+
PyMem_DEL(argvlist);
if (spawnval == -1)
static char posix_spawnve__doc__[] =
"spawnve(mode, path, args, env)\n\
-Execute a path with arguments and environment, replacing current process.\n\
+Execute the program 'path' in a new process.\n\
\n\
mode: mode of process creation\n\
path: path of executable file\n\
if (mode == _OLD_P_OVERLAY)
mode = _P_OVERLAY;
+
+ Py_BEGIN_ALLOW_THREADS
spawnval = _spawnve(mode, path, argvlist, envlist);
+ Py_END_ALLOW_THREADS
+
if (spawnval == -1)
(void) posix_error();
else