diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-11-10 21:10:31 -0800 |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-11-10 21:10:31 -0800 |
commit | 22f9e65bb11ab8dee2562fe5bf4e19dc9ff87bf7 (patch) | |
tree | b2ee3bf7504f2ef298b67d1e70b43138265fd626 /Python/thread.c | |
parent | f6128db16b5187864ee8da2078d87bd52539fcad (diff) | |
parent | bbdd90ba3a4de0c56d65b1fcc6db37b2730119d6 (diff) | |
download | cpython-22f9e65bb11ab8dee2562fe5bf4e19dc9ff87bf7.tar.gz |
Fixes issue #14396: Handle the odd rare case of waitpid returning 0
when not expected in subprocess.Popen.wait().
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/thread.c b/Python/thread.c index e55d34244e..25ab16e647 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -91,10 +91,6 @@ static size_t _pythread_stacksize = 0; #include "thread_nt.h" #endif -#ifdef OS2_THREADS -#define PYTHREAD_NAME "os2" -#include "thread_os2.h" -#endif /* #ifdef FOOBAR_THREADS |