[pywin32-checkins] pywin32/Pythonwin/pywin/Demos/app helloapp.py, 1.1.4.1, 1.1.4.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-10-23 09:49:38
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/app In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8245/Pythonwin/pywin/Demos/app Modified Files: Tag: py3k helloapp.py Log Message: merge various py3k friendly changes from the trunk. Index: helloapp.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/app/helloapp.py,v retrieving revision 1.1.4.1 retrieving revision 1.1.4.2 diff -C2 -d -r1.1.4.1 -r1.1.4.2 *** helloapp.py 29 Aug 2008 06:16:05 -0000 1.1.4.1 --- helloapp.py 23 Oct 2008 09:45:16 -0000 1.1.4.2 *************** *** 15,19 **** import win32con import win32ui ! from pywin.mfc import window, dialog, thread, afxres # The main frame. --- 15,20 ---- import win32con import win32ui ! from pywin.mfc import window, dialog, afxres ! from pywin.mfc.thread import WinApp # The main frame. *************** *** 33,37 **** # The application object itself. ! class HelloApp(_thread.WinApp): def InitInstance(self): --- 34,38 ---- # The application object itself. ! class HelloApp(WinApp): def InitInstance(self): |