L'impression multiprocessement ne fonctionne pas
from multiprocessing import Process
import sys
def f(name):
print 'hello', name
sys.stdout.flush()
...
Real Raccoon