From 8da67a5dd3eea67ac10f4c5b24ca73aec19d27ae Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 27 Sep 2009 21:01:49 +0000 Subject: In _test_pty_eof(), call waitpid on the child process only after reading all the data from the pty. svn path=/main/trunk/; revision=14452 --- pym/portage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 3bc125b94..b00047027 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3779,7 +3779,6 @@ def _test_pty_eof(): os._exit(os.EX_OK) else: slave_file.close() - os.waitpid(pid, 0) eof = False data = [] @@ -3809,6 +3808,7 @@ def _test_pty_eof(): data.append(_unicode_decode(buf.tostring(), encoding='utf_8', errors='strict')) + os.waitpid(pid, 0) master_file.close() return test_string == ''.join(data) -- cgit v1.2.3-1-g7c22