diff options
author | Benjamin Schubert <contact@benschubert.me> | 2019-10-15 14:17:19 +0100 |
---|---|---|
committer | Benjamin Schubert <contact@benschubert.me> | 2019-10-16 13:58:57 +0100 |
commit | 1a7582c45a9bd265b8da429fde145b115a50fac0 (patch) | |
tree | 9990eef5524a5640e027275e5735ca79600c8471 /src/buildstream/node.pxd | |
parent | abc522cd6a292ef571cafb1b4d4288903690d730 (diff) | |
download | buildstream-1a7582c45a9bd265b8da429fde145b115a50fac0.tar.gz |
node.pyx: Make 'strip_node_info' public
'strip_node_info' would be useful for multiple plugins. We should
therefore allow users to use it.
Diffstat (limited to 'src/buildstream/node.pxd')
-rw-r--r-- | src/buildstream/node.pxd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/node.pxd b/src/buildstream/node.pxd index f2244a18f..47f46bbdf 100644 --- a/src/buildstream/node.pxd +++ b/src/buildstream/node.pxd @@ -29,10 +29,10 @@ cdef class Node: # Public Methods cpdef Node clone(self) cpdef ProvenanceInformation get_provenance(self) + cpdef object strip_node_info(self) # Private Methods used in BuildStream cpdef void _assert_fully_composited(self) except * - cpdef object _strip_node_info(self) # Protected Methods cdef void _compose_on(self, str key, MappingNode target, list path) except * |