Issue897935
Created on 2004-02-16 11:28 by jamesh, last changed 2004-06-05 16:31 by akuchling. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg20010 - (view) | Author: James Henstridge (jamesh) | Date: 2004-02-16 11:28 | |
By running the following short program on Linux, you
can see the number of open file descriptors increase:
import os, pty
for i in range(10):
pty.spawn(['true'])
print len(os.listdir('/proc/%d/fd' % os.getpid()))
This can be fixed by os.close()'ing master_fd. This
problem seems to exist in CVS head as well as 2.3.
There are also a few changes that would be nice to see
in pty.spawn:
1) get the exit status of the child. Could be fixed by
adding the following to the end of the function:
pid, status = os.waitpid(pid, 0)
return status
2) set master_fd to non-blocking mode, so that the
output is printed to the screen at the speed it is
produced by the child.
|
|||
| msg20011 - (view) | Author: A.M. Kuchling (akuchling) * ![]() |
Date: 2004-06-05 16:30 | |
Logged In: YES user_id=11375 I've applied a fix to CVS HEAD; thanks for reporting this! The two feature suggestions have been added to the RFE tracker as #967161 so that I can close this bug. |
|||
| msg20012 - (view) | Author: A.M. Kuchling (akuchling) * ![]() |
Date: 2004-06-05 16:31 | |
Logged In: YES user_id=11375 Closing. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2004-02-16 11:28:48 | jamesh | create | |
