I've had a serious problem that my simple GUI app would run as myscript.py fine, but will not run as myscript.pyw. Why pyw? Because having a GUI app with debug console hanging around would not look very pleasant to the users. By manually running from command console:python myscript.pyw -> runs OK.pythonw myscript.pyw -> Doesn't run, no error message what-so-ever.Even after packing with py2exe, t..