-1
我正在用我的其他計算機進行項目演示時遇到此錯誤。它使用蟒蛇3.啓動我的tkinterapp時發生Python崩潰
Windows給我這個錯誤,指出「pythonw.exe已停止工作」。以下是詳細信息:
Problem signature:
Problem Event Name: BEX
Application Name: pythonw.exe
Application Version: 0.0.0.0
Application Timestamp: 577c1105
Fault Module Name: StackHash_0a9e
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 00000000
Exception Offset: 3f271bee
Exception Code: c0000005
Exception Data: 00000008
OS Version: 6.1.7601.2.1.0.256.4
Locale ID: 3081
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
任何人都可以解釋爲什麼這個問題的原因?
編輯:我找到了錯誤的來源。這是當我包裝self._framePlotter
self._framePlotter = tk.Frame(master)
self._plotter = Plotter(self._framePlotter)
self._framePlotter.pack(side=tk.LEFT, fill = tk.BOTH, expand=True)
請幫助。
你能簡要介紹一下你的代碼嗎?具體來說,調用'mainloop' –
你有沒有試過在標準的Python IDLE中運行這個命令來看看你是否得到了相同的結果?這可能是腳本相關或Anaconda相關的。 –
@EthanField在我的筆記本電腦上,它工作正常。但是,在這臺計算機上,我不會測試我的代碼。 編輯:(續)我在IDLE上測試過它,但它沒有提供任何異常/錯誤。 tk.Tk()窗口會顯示出來,但它會突然崩潰。 – Kucosyn