mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Merged revisions 81179 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81179 | victor.stinner | 2010-05-14 23:52:26 +0200 (ven., 14 mai 2010) | 2 lines Fix regression introduced by r81154 (Issue #5099, subprocess destructor) ........
This commit is contained in:
parent
a45598a035
commit
c807a613ee
1 changed files with 3 additions and 3 deletions
|
@ -908,9 +908,9 @@ class Popen(object):
|
|||
|
||||
|
||||
def _internal_poll(self, _deadstate=None,
|
||||
_WaitForSingleObject=WaitForSingleObject,
|
||||
_WAIT_OBJECT_0=WAIT_OBJECT_0,
|
||||
_GetExitCodeProcess=GetExitCodeProcess):
|
||||
_WaitForSingleObject=_subprocess.WaitForSingleObject,
|
||||
_WAIT_OBJECT_0=_subprocess.WAIT_OBJECT_0,
|
||||
_GetExitCodeProcess=_subprocess.GetExitCodeProcess):
|
||||
"""Check if child process has terminated. Returns returncode
|
||||
attribute.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue