Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20820/Pythonwin/pywin
Modified Files:
default.cfg
Log Message:
Move to py2k *and* py3k syntax
Index: default.cfg
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/default.cfg,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** default.cfg 11 Aug 2008 00:49:01 -0000 1.9
--- default.cfg 6 Dec 2008 00:36:13 -0000 1.10
***************
*** 197,202 ****
find.lastSearch.findText = word
find.lastSearch.sel = (start,end)
! except Exception, why:
! print repr(why), why
find.FindNext()
--- 197,203 ----
find.lastSearch.findText = word
find.lastSearch.sel = (start,end)
! except Exception:
! import traceback
! traceback.print_exc()
find.FindNext()
|