From 25277f0cea0d6d8057acedd795a890fd00ed178e Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 26 Aug 2020 15:13:15 -0400 Subject: update basic_block property documentation on flowgraphnode --- python/flowgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/flowgraph.py') diff --git a/python/flowgraph.py b/python/flowgraph.py index 0d5f218b..645eab81 100644 --- a/python/flowgraph.py +++ b/python/flowgraph.py @@ -114,7 +114,7 @@ class FlowGraphNode(object): @property def basic_block(self): - """Basic block associated with this part of the flow graph""" + """Basic block associated with this part of the flow graph (well not automatically cause the node to render as a native basic block)""" block = core.BNGetFlowGraphBasicBlock(self.handle) if not block: return None -- cgit v1.3.1