script de redémarrage python
sys.stdout.flush()
os.execl(sys.executable, 'python', __file__, *sys.argv[1:])
Long Lobster
sys.stdout.flush()
os.execl(sys.executable, 'python', __file__, *sys.argv[1:])
import os
import sys
os.execl(sys.executable, sys.executable, *sys.argv)
os.execv(sys.executable, ['python'] + sys.argv)