Here is my code for a simple multiprocessing task in python
from multiprocessing import Process def myfunc(num): tmp = num * num print \'squared O/
Save the code above into a .py file and then run it in a gnome-terminal with
python myfile.py
Where "myfile.py" is the filename you saved to.
I would assume that the IDE you are using is confused somehow by Process()
Process()