aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/bb/data.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/bb/data.py b/lib/bb/data.py
index 53fe34825..4be26367d 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -70,10 +70,6 @@ def keys(d):
"""Return a list of keys in d"""
return d.keys()
-
-__expand_var_regexp__ = re.compile(r"\${[^{}]+}")
-__expand_python_regexp__ = re.compile(r"\${@.+?}")
-
def expand(s, d, varname = None):
"""Variable expansion using the data store"""
return d.expand(s, varname)