summaryrefslogtreecommitdiff
path: root/src/buildstream/node.pxd
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-07-12 10:05:45 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-07-15 14:14:03 +0000
commitd474b763a299d5f2be2fc7c6bcc5cb396988f66e (patch)
tree77e72532615bb04646772f34b9c3842920ed8957 /src/buildstream/node.pxd
parent2c7674169ab3368b7f2353ce04ba5b8692608867 (diff)
downloadbuildstream-d474b763a299d5f2be2fc7c6bcc5cb396988f66e.tar.gz
node: Mark `MappingNode._get` as private
Diffstat (limited to 'src/buildstream/node.pxd')
-rw-r--r--src/buildstream/node.pxd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/node.pxd b/src/buildstream/node.pxd
index 3069b2fc9..19f0a223e 100644
--- a/src/buildstream/node.pxd
+++ b/src/buildstream/node.pxd
@@ -66,10 +66,10 @@ cdef class MappingNode(Node):
# Protected Methods
cdef void _compose_on_composite_dict(self, MappingNode target)
cdef void _compose_on_list(self, SequenceNode target)
- cdef Node _get(self, str key, default, default_constructor)
# Private Methods
cdef void __composite(self, MappingNode target, list path=*) except *
+ cdef Node _get(self, str key, default, default_constructor)
cdef class ScalarNode(Node):