From e09f8b2f88c2c8273728ed527aac64bb3525614e Mon Sep 17 00:00:00 2001 From: Tobias Platen Date: Thu, 23 Jan 2020 13:37:32 +0100 Subject: [PATCH] remove redunant debug output --- absyn.py | 2 -- pypreproc.py | 1 - 2 files changed, 3 deletions(-) diff --git a/absyn.py b/absyn.py index e81e429..ba356d5 100644 --- a/absyn.py +++ b/absyn.py @@ -160,8 +160,6 @@ class Absyn: clsdecl = Node(syms.compound_stmt, [clsdecl]) self.printpy(str(clsdecl)) - print("=====================") - print(str(clsdecl)) return clsdecl def appendComments(self, data): diff --git a/pypreproc.py b/pypreproc.py index 891d4dd..164f430 100644 --- a/pypreproc.py +++ b/pypreproc.py @@ -25,7 +25,6 @@ class Preprocessor: if(docstring_end): in_docstring = False self.docstrings += [docstring] - print(docstring) return ret def insertDocstrings(self, data): -- 2.30.2