remove redunant debug output
authorTobias Platen <tplaten@posteo.de>
Thu, 23 Jan 2020 12:37:32 +0000 (13:37 +0100)
committerTobias Platen <tplaten@posteo.de>
Thu, 23 Jan 2020 12:37:32 +0000 (13:37 +0100)
absyn.py
pypreproc.py

index e81e429510dd504feb19c6aa8921b23ff7b68c9a..ba356d5b1e5ed2020a9f142cba31f40221221330 100644 (file)
--- 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):
index 891d4ddf967eeea38f32ade7ba458dea10738edf..164f4304832f4d1da12fa370563d054c144e5f7c 100644 (file)
@@ -25,7 +25,6 @@ class Preprocessor:
             if(docstring_end):
                 in_docstring = False
                 self.docstrings += [docstring]
-                print(docstring)
         return ret
 
     def insertDocstrings(self, data):