]> granicus.if.org Git - python/commitdiff
Issue #29335: Fix subprocess.Popen.wait() when the child process has
authorGregory P. Smith <greg@krypto.org>
Mon, 23 Jan 2017 01:29:44 +0000 (17:29 -0800)
committerGregory P. Smith <greg@krypto.org>
Mon, 23 Jan 2017 01:29:44 +0000 (17:29 -0800)
exited to a stopped instead of terminated state (ex: when under ptrace).

1  2 
Lib/subprocess.py
Lib/test/test_subprocess.py
Misc/NEWS

Simple merge
index 89de6d1b1ac9a22e68802e98106818d9eff81d83,27406d445e7ab0c0b656a6bf77de94124f13ee97..faa153aac7607637fb1826c5b6de28a14cf05772
@@@ -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
diff --cc Misc/NEWS
Simple merge