*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@1023 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2001-02-23 01:40:06 +00:00
commit d9da4e4777
13 changed files with 464 additions and 153 deletions

19
Tools/WAD/Test/foo.py Normal file
View file

@ -0,0 +1,19 @@
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()