[pywin32-checkins] pywin32/Pythonwin/pywin default.cfg, 1.9.2.1, 1.9.2.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-06 02:17:08
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3631/Pythonwin/pywin Modified Files: Tag: py3k default.cfg Log Message: merge various fixes and changes from the trunk Index: default.cfg =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/default.cfg,v retrieving revision 1.9.2.1 retrieving revision 1.9.2.2 diff -C2 -d -r1.9.2.1 -r1.9.2.2 *** default.cfg 29 Aug 2008 06:16:06 -0000 1.9.2.1 --- default.cfg 6 Dec 2008 01:48:26 -0000 1.9.2.2 *************** *** 197,202 **** find.lastSearch.findText = word find.lastSearch.sel = (start,end) ! except Exception as 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() |