summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2019-04-22 15:43:42 -0400
committerBrian Potchik <brian@vector35.com>2019-04-22 15:43:42 -0400
commit0215e18c0cc57637a9204f0c2ba4dde4c1cdebee (patch)
treee19094d80c5eaa702b1dd9ad1ac3640fba04dbe8 /python
parent07208c9f67823c7b685d393848a36ee23bc252ac (diff)
Fix DataVariable API example.
Diffstat (limited to 'python')
-rw-r--r--python/binaryview.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index 3892e20e..1baeab2b 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -3282,7 +3282,7 @@ class BinaryView(object):
:rtype: DataVariable
:Example:
- >>> hex(bv.get_next_data_var_after(0x10000000))
+ >>> bv.get_next_data_var_after(0x10000000)
<var 0x1000003c: int32_t>
>>>
"""
@@ -3392,7 +3392,7 @@ class BinaryView(object):
:rtype: DataVariable
:Example:
- >>> hex(bv.get_previous_data_var_before(0x1000003c))
+ >>> bv.get_previous_data_var_before(0x1000003c)
<var 0x10000000: int16_t>
>>>
"""