diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-05-21 16:44:07 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-05-21 16:44:07 -0400 |
| commit | b2d30f40d1209f3bd51b5d4db91550aa77328dce (patch) | |
| tree | bd1085e9e752f69efef0589ddbf03b775e8cc994 /python | |
| parent | 174c0b935e6eebc24f2dfcabd3c3d9a26527e6d4 (diff) | |
documentation formatting
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 6c0f5c4d..9074b58c 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -4936,12 +4936,12 @@ class BinaryView(object): :param str data: data to search for :param FindFlag flags: (optional) defaults to case-insensitive data search - ==================== ============================ - FindFlag Description - ==================== ============================ - FindCaseSensitive Case-sensitive search - FindCaseInsensitive Case-insensitive search - ===================== ============================ + ==================== ============================ + FindFlag Description + ==================== ============================ + FindCaseSensitive Case-sensitive search + FindCaseInsensitive Case-insensitive search + ==================== ============================ """ buf = databuffer.DataBuffer(str(data)) result = ctypes.c_ulonglong() @@ -4959,12 +4959,12 @@ class BinaryView(object): :param str text: text to search for :param FindFlag flags: (optional) defaults to case-insensitive data search - ==================== ============================ - FindFlag Description - ==================== ============================ - FindCaseSensitive Case-sensitive search - FindCaseInsensitive Case-insensitive search - ===================== ============================ + ==================== ============================ + FindFlag Description + ==================== ============================ + FindCaseSensitive Case-sensitive search + FindCaseInsensitive Case-insensitive search + ==================== ============================ """ if not isinstance(text, str): raise TypeError("text parameter is not str type") |
