diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/demangle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/demangle.py b/python/demangle.py index 33004d1a..6f007a7b 100644 --- a/python/demangle.py +++ b/python/demangle.py @@ -54,7 +54,7 @@ def demangle_ms(arch, mangled_name, options = False): :param Architecture arch: Architecture for the symbol. Required for pointer and integer sizes. :param str mangled_name: a mangled Microsoft Visual Studio C++ name - :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directally + :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directly :type options: Tuple[bool, BinaryView, None] :return: returns tuple of (Type, demangled_name) or (None, mangled_name) on error :rtype: Tuple @@ -84,7 +84,7 @@ def demangle_gnu3(arch, mangled_name, options = None): :param Architecture arch: Architecture for the symbol. Required for pointer and integer sizes. :param str mangled_name: a mangled GNU3 name - :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directally + :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directly :type options: Tuple[bool, BinaryView, None] :return: returns tuple of (Type, demangled_name) or (None, mangled_name) on error :rtype: Tuple |
