This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dcbbcd
Recipients
Date 2003-07-22.09:34:44
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The following program reliably crashes python.exe (2.3
RC1) on Win XP - SP1:


import Tkinter
tk = Tkinter.Tk()
quit_btn = Tkinter.Button(tk, text='quit', 
                          #command=tk.quit)  # This crashes
                          command=tk.destroy)  # This works
       
quit_btn.pack()
Tkinter.mainloop()


The error message is something like (bad english
translation):
The instruction in "0x77f4b2ab" points to "0x00000028".
The memory can't be read.
History
Date User Action Args
2008-01-20 09:56:13adminlinkissue775544 messages
2008-01-20 09:56:13admincreate