summaryrefslogtreecommitdiff
path: root/python/flowgraph.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2020-08-26 15:13:15 -0400
committerJordan Wiens <jordan@psifertex.com>2020-08-26 15:13:15 -0400
commit25277f0cea0d6d8057acedd795a890fd00ed178e (patch)
treed73793c6123a55a7809246cc7492d3c988cd6791 /python/flowgraph.py
parent3ca46b1097dc20813c9b3ea2d9c9657a09680d06 (diff)
update basic_block property documentation on flowgraphnode
Diffstat (limited to 'python/flowgraph.py')
-rw-r--r--python/flowgraph.py2
1 files changed, 1 insertions, 1 deletions
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