Re: [PyInstaller] Suggestion: cgitb in loader for debug

2016-05-30 Thread Hartmut Goebel
Am 30.05.2016 um 17:40 schrieb David Cortesi: > import cgitb > cgitb.enable(format='text') This sound like a good idea. it should at least go into "if things go wrong". Regarding adding it to an optional startup-script, I'm two-fold, since it produces *a lot* of output as my simple test

[PyInstaller] Suggestion: cgitb in loader for debug

2016-05-30 Thread David Cortesi
I'm reading the writeup on the cgitb (extended traceback) module on the PMOTW blog: https://pymotw.com/3/cgitb/ To get a much longer & more informative traceback of an error, it is only necessary to use import cgitb cgitb.enable(format='text') at the start of execution. It occurs to me