[Synopsis-changes] Synopsis/Synopsis/Synopsis/Parsers/Python Parser.py,1.4,1.5

Stefan Seefeld stefan at synopsis.fresco.org
Tue Nov 18 21:56:30 UTC 2003


Update of /cvs/synopsis/Synopsis/Synopsis/Parsers/Python
In directory frida:/tmp/cvs-serv21166/Synopsis/Parsers/Python

Modified Files:
	Parser.py 
Log Message:
fix little typos

Index: Parser.py
===================================================================
RCS file: /cvs/synopsis/Synopsis/Synopsis/Parsers/Python/Parser.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -d -r1.4 -r1.5
--- Parser.py	11 Nov 2003 06:02:01 -0000	1.4
+++ Parser.py	18 Nov 2003 21:56:27 -0000	1.5
@@ -6,8 +6,8 @@
 # see the file COPYING for details.
 #
 
-from Processor import Processor, Parameter
-import AST
+from Synopsis.Processor import Processor, Parameter
+from Synopsis import AST
 from python import parse
 
 class Parser(Processor):
@@ -18,7 +18,8 @@ class Parser(Processor):
 
       input = kwds.get('input')
       self.set_parameters(kwds)
+      self.ast = ast
       for file in input:
          ast.merge(parse(file, 0, {}, None))
 
-      return output_and_return_ast(self)
+      return self.output_and_return_ast()





More information about the Synopsis-changes mailing list