| Revision: | 8 |
| Committed: | Sat May 5 04:21:19 2012 UTC (13 years, 10 months ago) by ninoborges |
| Content type: | text/x-python |
| File size: | 268 byte(s) |
| Log Message: | Initial Import |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | ninoborges | 8 | #test script from the Programing python book |
| 2 | ## Do not run this from Python Win. It crashes it. It runs fine by itself. ie from shell | ||
| 3 | |||
| 4 | import sys | ||
| 5 | from Tkinter import * | ||
| 6 | widget = Button(None, text='Hello World', command=sys.exit) | ||
| 7 | widget.pack() | ||
| 8 | widget.mainloop() |