aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse/ast.py
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2014-12-01 20:50:14 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-03 12:13:32 +0000
commit2800958dadaa5c055ba21d52c98d842d360f0785 (patch)
tree70753e387f5eb78cc352645866230bdaa9e66dde /lib/bb/parse/ast.py
parentc52841445d8db8f84c4da34203b195fea5874247 (diff)
downloadbitbake-2800958dadaa5c055ba21d52c98d842d360f0785.tar.gz
data: rename defaultval to _defaultval
The defaultval field is intended to be internal and the only use of that field outside of data.py is to skip over it when iterating over a value's flags. For clarity and convenience, rename the field to _defaultval so that it is considered internal and not exposed through the data API. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/parse/ast.py')
-rw-r--r--lib/bb/parse/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py
index 4e5a06e76..af42a0c0d 100644
--- a/lib/bb/parse/ast.py
+++ b/lib/bb/parse/ast.py
@@ -128,7 +128,7 @@ class DataNode(AstNode):
if 'flag' in groupd and groupd['flag'] != None:
flag = groupd['flag']
elif groupd["lazyques"]:
- flag = "defaultval"
+ flag = "_defaultval"
loginfo['op'] = op
loginfo['detail'] = groupd["value"]