swig/Tools/WAD/Test/foo.py
Dave Beazley 3348649a07 *** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@1028 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2001-02-25 19:30:41 +00:00

31 lines
224 B
Python

import debug
def foo():
debug.abort_crash(-1)
def bar():
foo()
def spam():
bar()
from Tkinter import *
root = Tk()
button = Button(text="Press me", command=spam)
button.pack()
#root.mainloop()