I have the following python code:
os.system(\"C:/Python27/python.exe C:/GUI/TestGUI.py\") sys.exit(0)
It runs the command fine, and a window po
I suggest using os._exit instead of sys.exit, as sys.exit doesnt quit a program but raises exception level, or exits a thread. os._exit(-1) quits the entire program
os._exit
sys.exit
os._exit(-1)