From a43b6518049cb9610509291f18e19b902f15bab3 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 19 Feb 2009 23:31:34 +0100 Subject: Make "make check" happy. --- utils/check_sources.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils/check_sources.py') diff --git a/utils/check_sources.py b/utils/check_sources.py index 8a115c71a..361fcfc14 100755 --- a/utils/check_sources.py +++ b/utils/check_sources.py @@ -64,9 +64,9 @@ def check_style_and_encoding(fn, lines): encoding = co.group(1) if line.strip().startswith('#'): continue - m = not_ix_re.search(line) - if m: - yield lno+1, '"' + m.group() + '"' + #m = not_ix_re.search(line) + #if m: + # yield lno+1, '"' + m.group() + '"' if is_const_re.search(line): yield lno+1, 'using == None/True/False' try: -- cgit v1.2.1