summaryrefslogtreecommitdiff
path: root/src/buildstream/_variables.pyx
diff options
context:
space:
mode:
authorBenjamin Schubert <contact@benschubert.me>2019-06-10 07:51:57 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-07-15 14:14:02 +0000
commit38671fb53f4522d046bed94699db8cc344ac2862 (patch)
treedc75c432d897d393d3a568290d45d762c7bde093 /src/buildstream/_variables.pyx
parentfcef3658433f74a2f396ed353bb3534f0001f3d8 (diff)
downloadbuildstream-38671fb53f4522d046bed94699db8cc344ac2862.tar.gz
_yaml: Add 'as_str()' on ScalarNode and 'get_scalar()' on MappingNode
- 'get_scalar()' allows retrieving a scalar node from a mapping. - 'as_str()' casts a ScalarNode into a string (thus removing the node information). Both together, those replace 'node_get(mapping, key, type=str)' but also allow retrieving the 'Node' itself, which will allow in the future lazier provenance computation.
Diffstat (limited to 'src/buildstream/_variables.pyx')
-rw-r--r--src/buildstream/_variables.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_variables.pyx b/src/buildstream/_variables.pyx
index 9b8b5a902..c41ff5c3f 100644
--- a/src/buildstream/_variables.pyx
+++ b/src/buildstream/_variables.pyx
@@ -128,7 +128,7 @@ cdef class Variables:
cdef str value
for key in _yaml.node_keys(node):
- value = <str> _yaml.node_get(node, str, key)
+ value = node.get_str(key)
ret[sys.intern(key)] = _parse_expstr(value)
return ret