summaryrefslogtreecommitdiff
path: root/bitbake/lib/bb
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-08 15:42:53 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:32 +0100
commit266f41644659165bf4d1c50ed9dafbb44d0693c3 (patch)
tree13c644192d66d6354f1aa2f30445002cf69fa657 /bitbake/lib/bb
parentbbc565e8258e9cb92ff3f10c5afb2208ef90652a (diff)
downloadopenembedded-core-266f41644659165bf4d1c50ed9dafbb44d0693c3.tar.gz
openembedded-core-266f41644659165bf4d1c50ed9dafbb44d0693c3.tar.bz2
openembedded-core-266f41644659165bf4d1c50ed9dafbb44d0693c3.tar.xz
openembedded-core-266f41644659165bf4d1c50ed9dafbb44d0693c3.zip
Drop some unused functions
(Bitbake rev: eb83df5bc7077685f314df01949cf06850e4693c) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r--bitbake/lib/bb/data.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py
index 6991d67ff..554532841 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -125,34 +125,6 @@ def keys(d):
"""Return a list of keys in d"""
return d.keys()
-def getData(d):
- """Returns the data object used"""
- return d
-
-def setData(newData, d):
- """Sets the data object to the supplied value"""
- d = newData
-
-
-##
-## Cookie Monsters' query functions
-##
-def _get_override_vars(d, override):
- """
- Internal!!!
-
- Get the Names of Variables that have a specific
- override. This function returns a iterable
- Set or an empty list
- """
- return []
-
-def _get_var_flags_triple(d):
- """
- Internal!!!
-
- """
- return []
__expand_var_regexp__ = re.compile(r"\${[^{}]+}")
__expand_python_regexp__ = re.compile(r"\${@.+?}")