diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-08 15:42:53 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:32 +0100 |
commit | 266f41644659165bf4d1c50ed9dafbb44d0693c3 (patch) | |
tree | 13c644192d66d6354f1aa2f30445002cf69fa657 /bitbake | |
parent | bbc565e8258e9cb92ff3f10c5afb2208ef90652a (diff) | |
download | poky-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')
-rw-r--r-- | bitbake/lib/bb/data.py | 28 |
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 | ||
128 | def getData(d): | ||
129 | """Returns the data object used""" | ||
130 | return d | ||
131 | |||
132 | def setData(newData, d): | ||
133 | """Sets the data object to the supplied value""" | ||
134 | d = newData | ||
135 | |||
136 | |||
137 | ## | ||
138 | ## Cookie Monsters' query functions | ||
139 | ## | ||
140 | def _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 | |||
150 | def _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"\${@.+?}") |