I've been experiencing trouble with "quit" command in my Python (3.4.3, Windows 64 bits) and currently isn't working at all. It always fail and, whenever I try to use it along with tkinter module, my code freezes, my Python crashes and I have to restart the shell. Look at this simple example... Could anybody tell what is wrong with this?
from tkinter import *
top = Tk()
quit_button = Button(top, text='Quit', command=quit).pack()
mainloop()