From 6d6c56555cee771852ae6dd4ffbb8256ab58c758 Mon Sep 17 00:00:00 2001 From: Ross Wilson Date: Mon, 23 May 2016 10:26:12 +0700 Subject: [PATCH] Fixed DEIMi, removed debug --- pyasm/pyasm | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyasm/pyasm b/pyasm/pyasm index d842704..c3161d2 100755 --- a/pyasm/pyasm +++ b/pyasm/pyasm @@ -627,8 +627,6 @@ def eval_expr(expr): if expr is None: return None - print('eval_expr: initial expr=%s' % expr) - # replace any "." value with "dot" defined in the symbol table expr = string.replace(expr, '.', '_D_O_T_') globs = copy.deepcopy(SymTable)