2014-03-07 97 views
0

我一直很高興與使用pyinstaller使Windows程序(.exe文件。但我發現調試階段非常耗時。如何調試蟒蛇.exe文件(pyinstaller)

我想pyinstaller編譯Python代碼,所以如果它崩潰,也將顯示錯誤。

到目前爲止,我已經做出了tryexcept

try: 
    # My code goes here 
except Exception as e: 
    print "ERROR:" 
    print type(e)  # the exception instance 
    print e.args 

但它不給我完全的崩潰日誌。

回答

1

嘗試traceback模塊,特別是print_...函數。此外,請嘗試捕捉BaseExceptions,所有例外均源於此,有些不是從Exception派生的。