aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse/ast.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-22 13:53:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-23 08:48:45 +0100
commitf1e943aebfb84e98253f3f21646d6765c4fa1d66 (patch)
treee23a976572b1b7e714ffcf11960b98997edce470 /lib/bb/parse/ast.py
parent4664333e55ffc9d618f2c2f074200923209fd6c4 (diff)
downloadbitbake-f1e943aebfb84e98253f3f21646d6765c4fa1d66.tar.gz
methodpool: Clean up the parsed module list handling to be slightly less insane
This removes some dubious functions and replaces them with a simpler, cleaner API which better describes what the code is doing. Unused code/variables are removed and comments tweaked. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/parse/ast.py')
-rw-r--r--lib/bb/parse/ast.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py
index b88d5f5b3..4d3a623aa 100644
--- a/lib/bb/parse/ast.py
+++ b/lib/bb/parse/ast.py
@@ -31,7 +31,6 @@ import itertools
from bb import methodpool
from bb.parse import logger
-__parsed_methods__ = bb.methodpool.get_parsed_dict()
_bbversions_re = re.compile(r"\[(?P<from>[0-9]+)-(?P<to>[0-9]+)\]")
class StatementGroup(list):