"In file included from .." messages

master
Yevgen Muntyan 2006-08-12 02:33:48 -05:00
parent 7c29ae038c
commit 3d305c7c09
1 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
import re
errors = [
r'In file included from (?P<file>[^:]+):(?P<line>\d+):.*',
r'(?P<file>[^:]+):(?P<line>\d+):(\d+:)?\s*error\s*:.*',
r'(?P<file>[^:]+):(?P<line>\d+):.*'
r'(?P<file>[^:]+):(?P<line>\d+):.*',
]
warnings = [
r'(?P<file>[^:]+):(?P<line>\d+):(\d+:)?\s*warning\s*:.*'
r'(?P<file>[^:]+):(?P<line>\d+):(\d+:)?\s*warning\s*:.*',
]
errors = [re.compile(e) for e in errors]