diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-08-26 15:13:15 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-08-26 15:13:15 -0400 |
| commit | 25277f0cea0d6d8057acedd795a890fd00ed178e (patch) | |
| tree | d73793c6123a55a7809246cc7492d3c988cd6791 /python/flowgraph.py | |
| parent | 3ca46b1097dc20813c9b3ea2d9c9657a09680d06 (diff) | |
update basic_block property documentation on flowgraphnode
Diffstat (limited to 'python/flowgraph.py')
| -rw-r--r-- | python/flowgraph.py | 2 |
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 |
