summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan <jordan@psifertex.com>2016-12-11 13:04:45 -0500
committerGitHub <noreply@github.com>2016-12-11 13:04:45 -0500
commitee0023179664d41d89407974431506e427df86a7 (patch)
treeb3086d648538515f82f8e782a3891a6dbf37bdf1 /python
parentf4dd9bca60c55af2c3ea112dd42c501d2823981f (diff)
parentacc41827cad8a7b2bbd66a15ffadd88cd0c31c2e (diff)
Merge pull request #574 from lucasduffey/patch-7
consistently use "BinaryView"
Diffstat (limited to 'python')
-rw-r--r--python/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/python/__init__.py b/python/__init__.py
index c53c175a..f3de096c 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -797,7 +797,7 @@ class BinaryViewType(object):
@property
def name(self):
- """Binary View name (read-only)"""
+ """BinaryView name (read-only)"""
return core.BNGetBinaryViewTypeName(self.handle)
@property
@@ -2869,7 +2869,7 @@ class BinaryView(object):
.. note:: This API performs a binary patch, analysis may need to be updated afterward. Additionally the binary\
file must be saved in order to preserve the changes made.
- :param Architecture arch: architecture of the current binary view
+ :param Architecture arch: architecture of the current BinaryView
:param int addr: virtual address of the instruction to be modified
:return: True on success, False on falure.
:rtype: bool
@@ -2893,7 +2893,7 @@ class BinaryView(object):
.. note:: This API performs a binary patch, analysis may need to be updated afterward. Additionally the binary\
file must be saved in order to preserve the changes made.
- :param Architecture arch: architecture of the current binary view
+ :param Architecture arch: architecture of the current BinaryView
:param int addr: virtual address of the instruction to be modified
:return: True on success, False on falure.
:rtype: bool
@@ -2917,7 +2917,7 @@ class BinaryView(object):
.. note:: This API performs a binary patch, analysis may need to be updated afterward. Additionally the binary
file must be saved in order to preserve the changes made.
- :param Architecture arch: architecture of the current binary view
+ :param Architecture arch: architecture of the current BinaryView
:param int addr: virtual address of the instruction to be modified
:return: True on success, False on falure.
:rtype: bool
@@ -2939,7 +2939,7 @@ class BinaryView(object):
``skip_and_return_value`` convert the ``call`` instruction of architecture ``arch`` at the virtual address
``addr`` to the equivilent of returning a value.
- :param Architecture arch: architecture of the current binary view
+ :param Architecture arch: architecture of the current BinaryView
:param int addr: virtual address of the instruction to be modified
:param int value: value to make the instruction *return*
:return: True on success, False on falure.
@@ -2962,7 +2962,7 @@ class BinaryView(object):
``get_instruction_length`` returns the number of bytes in the instruction of Architecture ``arch`` at the virtual
address ``addr``
- :param Architecture arch: architecture of the current binary view
+ :param Architecture arch: architecture of the current BinaryView
:param int addr: virtual address of the instruction query
:return: Number of bytes in instruction
:rtype: int