嗨我試圖在python中執行小代碼,它給操作系統錯誤。操作系統錯誤os.wait在python
>>> import os
>>> def child():
... pid = os.fork()
... if not pid:
... for i in range(5):
... print i
... return os.wait()
...
>>> child()
0
1
2
3
4
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 6, in child
OSError: [Errno 10] No child processes
我不能弄清楚爲什麼它給OSError。我搜索了它,它被注意到python 2.6或之前的bug。我正在使用python2.7。
你在運行這個什麼操作系統? – dekomote 2012-04-03 07:57:47
嗨它是Ubuntu服務器版 – Netro 2012-04-03 09:08:28