[pywin32-checkins] pywin32/Pythonwin/pywin/framework winout.py,1.12,1.13
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-03-22 10:50:47
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7404/framework Modified Files: winout.py Log Message: Fix [ 1444381 ] lines may be mistaken for exception lines Index: winout.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework/winout.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** winout.py 26 Apr 2004 04:44:48 -0000 1.12 --- winout.py 22 Mar 2006 10:50:44 -0000 1.13 *************** *** 79,83 **** class WindowOutputViewImpl: def __init__(self): ! self.patErrorMessage=re.compile('.*File "(.*)", line ([0-9]+)') self.template = self.GetDocument().GetDocTemplate() --- 79,83 ---- class WindowOutputViewImpl: def __init__(self): ! self.patErrorMessage=re.compile('\W*File "(.*)", line ([0-9]+)') self.template = self.GetDocument().GetDocTemplate() |