From: duplo Date: Mon, 16 Feb 2009 14:09:19 +0000 (+0000) Subject: Remove a debug print X-Git-Tag: 2.1.0~331 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=80bf957ab4744d4974808000a23dab6515f02c86;p=bertos.git Remove a debug print git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2351 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/newParser.py b/wizard/newParser.py index e40bcf82..4b156449 100644 --- a/wizard/newParser.py +++ b/wizard/newParser.py @@ -95,7 +95,6 @@ def getDefinitionBlocks(text): block.append(([comment], define)) for define, comment in re.findall(r"#define\s*(.*?)\s*/{3}<\s*(.+?)\s*?(?:/{2,3}[^<].*?)?$", text, re.MULTILINE): block.append(([comment], define)) - print block return block class ParseError(Exception):