git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@1028 626c5289-ae23-0410-ae9c-e8d60b6d4f22
31 lines
224 B
Python
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()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|