summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-03-24 11:20:39 -0400
committerPeter LaFosse <peter@vector35.com>2017-03-24 11:20:39 -0400
commit435e937c9705bc71cf1e7da1e08b23345a131360 (patch)
tree5a4d729acb0404c4c4059f0c7e8aa7c22136b649 /python/binaryview.py
parent1e8e975ed8100c7a6186e8b27833a067ceaf05be (diff)
parentddaf7506e1802cfd4f9c78bcfb14deb0180b04d8 (diff)
Merge branch 'dev' into staging
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index dd37be69..042c08f5 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -3776,7 +3776,7 @@ class BinaryWriter(object):
>>> hex(bw.offset)
'0x100000008L'
>>> bw.seek(0x100000000)
- >>> hex(br.offset)
+ >>> hex(bw.offset)
'0x100000000L'
>>>
"""
@@ -3793,7 +3793,7 @@ class BinaryWriter(object):
>>> hex(bw.offset)
'0x100000008L'
>>> bw.seek_relative(-8)
- >>> hex(br.offset)
+ >>> hex(bw.offset)
'0x100000000L'
>>>
"""