Hi all,<div>I'm trying to use this feature in ironpython. I just follow the first sample:</div><div><div>--------------------------------------------</div><div>from multiprocessing import Process</div><div><br></div><div>
def f(name):</div><div> print 'hello', name</div><div><br></div><div>if __name__ == '__main__':</div><div> p = Process(target=f, args=('bob',))</div><div> p.start()</div><div> p.join()</div>
</div><div>--------------------------------------------</div><div>But I get the following error when I'm executing it:</div><div>--------------------------------------------</div><div><div>c:\temp>ipy test-ipy-multiprocessing.py</div>
<div>Traceback (most recent call last):</div><div> File "test-ipy-multiprocessing.py", line 1, in <module></div><div>ImportError: No module named multiprocessing</div></div><div>--------------------------------------------</div>
<div><br></div><div>Thanks for any help.</div><div><br></div><div>Regards.</div><div><br></div><div>Romain.</div><div><br></div><div>PS: I have just installed the last release of IronPython 2.7 </div><div>--------------------------------------------</div>
<div><div>c:\temp>ipy -V</div><div>PythonContext 2.7.0.40 on .NET 4.0.30319.1</div></div><div>--------------------------------------------</div>