summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data.py
diff options
context:
space:
mode:
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"\${@.+?}")