From 9c926b6fec1a35e9d2ab0f8a464b44b46fa2198f Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Mon, 9 Mar 2015 01:07:55 +0100 Subject: [PATCH] Fix obsolete comment. There was a time where I decided that the tree would be stored inside the symbol table, as values for the global symbols. I changed my mind later and separated them, but that comment remained. --- lslopt/lslparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lslopt/lslparse.py b/lslopt/lslparse.py index fbee4c0..0b8dcc6 100644 --- a/lslopt/lslparse.py +++ b/lslopt/lslparse.py @@ -525,7 +525,7 @@ class parser(object): """Calls GetToken and sets the internal token.""" self.tok = self.GetToken() - # Recursive-descendent parser. The result is a symbol table. + # Recursive-descendent parser. The result is an AST and a symbol table. def expect(self, toktype): """Raise exception if the current token is not the given one."""