From 74016daa3a9131129974463452221e4a740bb860 Mon Sep 17 00:00:00 2001
From: Richard Purdie <rpurdie@linux.intel.com>
Date: Sun, 4 Oct 2009 01:52:51 +0100
Subject: bitbake: Remove unused and hence pointless internal__functions__
 variable

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
---
 bitbake-dev/lib/bb/parse/parse_py/BBHandler.py | 7 -------
 bitbake/lib/bb/parse/parse_py/BBHandler.py     | 7 -------
 2 files changed, 14 deletions(-)

diff --git a/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py b/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
index 5a128e867..f92b31fd0 100644
--- a/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
@@ -240,13 +240,6 @@ def feeder(lineno, s, fn, root, d):
             if not root  in __parsed_methods__:
                 text = '\n'.join(__body__)
                 methodpool.insert_method( root, text, fn )
-                funcs = data.getVar('__functions__', d) or {}
-                if not funcs.has_key( root ):
-                    funcs[root] = text 
-                else:
-                    funcs[root] = "%s\n%s" % (funcs[root], text)
-
-                data.setVar('__functions__', funcs, d)
             __body__ = []
             __inpython__ = False
 
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py
index d13428aa0..e918ce3bb 100644
--- a/bitbake/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py
@@ -234,13 +234,6 @@ def feeder(lineno, s, fn, root, d):
             if not root  in __parsed_methods__:
                 text = '\n'.join(__body__)
                 methodpool.insert_method( root, text, fn )
-                funcs = data.getVar('__functions__', d) or {}
-                if not funcs.has_key( root ):
-                    funcs[root] = text 
-                else:
-                    funcs[root] = "%s\n%s" % (funcs[root], text)
-
-                data.setVar('__functions__', funcs, d)
             __body__ = []
             __inpython__ = False
 
-- 
cgit v1.2.3