Bump version to 0.9.1.
[python/dscho.git] / Mac / Tools / IDE / Wminiapp.py
blob3eac613990cc5c8596ec8e9ebef822b70fa6cabc
1 """Minimal W application."""
3 import Wapplication
5 class TestApp(Wapplication.Application):
7 def __init__(self):
8 import Res
9 Res.FSpOpenResFile("Widgets.rsrc", 1)
10 self._menustocheck = []
11 self.preffilepath = ":Python:PythonIDE preferences"
12 Wapplication.Application.__init__(self, 'Pyth')
13 # open a new text editor
14 import PyEdit
15 PyEdit.Editor()
16 # start the mainloop
17 self.mainloop()
20 TestApp()