summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2016-11-09 01:17:02 -0500
committerJordan Wiens <jordan@psifertex.com>2016-11-09 01:17:02 -0500
commitbd3117ef0e09276a77ada277413743776ffc9ce1 (patch)
tree32e75f8cf314252996f3f6c0c5c0c1dcf537349f /python
parentafdcfb9e1e7ab223da8bb5e4ad412e8852ff3d44 (diff)
missing function names
Diffstat (limited to 'python')
-rw-r--r--python/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/__init__.py b/python/__init__.py
index a855d991..5e147ad5 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -3996,7 +3996,7 @@ class BinaryWriter(object):
def write16(self, value):
"""
- ```` writes the lowest order two bytes from the integer ``value`` to the current offset, using internal endianness.
+ ``write16`` writes the lowest order two bytes from the integer ``value`` to the current offset, using internal endianness.
:param int value: integer value to write.
:return: boolean True on success, False on failure.
@@ -4006,7 +4006,7 @@ class BinaryWriter(object):
def write32(self, value):
"""
- ```` writes the lowest order four bytes from the integer ``value`` to the current offset, using internal endianness.
+ ``write32`` writes the lowest order four bytes from the integer ``value`` to the current offset, using internal endianness.
:param int value: integer value to write.
:return: boolean True on success, False on failure.
@@ -4016,7 +4016,7 @@ class BinaryWriter(object):
def write64(self, value):
"""
- ```` writes the lowest order eight bytes from the integer ``value`` to the current offset, using internal endianness.
+ ``write64`` writes the lowest order eight bytes from the integer ``value`` to the current offset, using internal endianness.
:param int value: integer value to write.
:return: boolean True on success, False on failure.