[pywin32-checkins] pywin32/Pythonwin/pywin/Demos/ocx webbrowser.py, 1.1, 1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-10-01 14:45:08
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/ocx In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21342/Pythonwin/pywin/Demos/ocx Modified Files: webbrowser.py Log Message: Move to 'new style' exception raising. Index: webbrowser.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/ocx/webbrowser.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** webbrowser.py 1 Sep 1999 23:33:40 -0000 1.1 --- webbrowser.py 1 Oct 2008 14:44:52 -0000 1.2 *************** *** 11,15 **** WebBrowserModule = gencache.EnsureModule("{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}", 0, 1, 1) if WebBrowserModule is None: ! raise ImportError, "IE4 does not appear to be installed." class MyWebBrowser(activex.Control, WebBrowserModule.WebBrowser): --- 11,15 ---- WebBrowserModule = gencache.EnsureModule("{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}", 0, 1, 1) if WebBrowserModule is None: ! raise ImportError("IE4 does not appear to be installed.") class MyWebBrowser(activex.Control, WebBrowserModule.WebBrowser): |