summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data.py
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/data.py
parentbbc565e8258e9cb92ff3f10c5afb2208ef90652a (diff)
downloadpoky-266f41644659165bf4d1c50ed9dafbb44d0693c3.tar.gz
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/data.py')
-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 6991d67ff8..554532841a 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -125,34 +125,6 @@ def keys(d):
125 """Return a list of keys in d""" 125 """Return a list of keys in d"""
126 return d.keys() 126 return d.keys()
127 127
128def getData(d):
129 """Returns the data object used"""
130 return d
131
132def setData(newData, d):
133 """Sets the data object to the supplied value"""
134 d = newData
135
136
137##
138## Cookie Monsters' query functions
139##
140def _get_override_vars(d, override):
141 """
142 Internal!!!
143
144 Get the Names of Variables that have a specific
145 override. This function returns a iterable
146 Set or an empty list
147 """
148 return []
149
150def _get_var_flags_triple(d):
151 """
152 Internal!!!
153
154 """
155 return []
156 128
157__expand_var_regexp__ = re.compile(r"\${[^{}]+}") 129__expand_var_regexp__ = re.compile(r"\${[^{}]+}")
158__expand_python_regexp__ = re.compile(r"\${@.+?}") 130__expand_python_regexp__ = re.compile(r"\${@.+?}")