From: Gregory P. Smith Date: Mon, 23 Jan 2017 01:29:44 +0000 (-0800) Subject: Issue #29335: Fix subprocess.Popen.wait() when the child process has X-Git-Tag: v3.6.1rc1~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78034c81fb0f5b82845533e215f7e5686ce88964;p=thirdparty%2FPython%2Fcpython.git Issue #29335: Fix subprocess.Popen.wait() when the child process has exited to a stopped instead of terminated state (ex: when under ptrace). --- 78034c81fb0f5b82845533e215f7e5686ce88964 diff --cc Lib/test/test_subprocess.py index 89de6d1b1ac9,27406d445e7a..faa153aac760 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@@ -3,8 -3,12 +3,10 @@@ from unittest import moc from test import support import subprocess import sys + import platform + import ctypes import signal import io -import locale import os import errno import tempfile