summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-02-04 15:58:18 -0500
committerGlenn Smith <glenn@vector35.com>2025-02-05 17:43:54 -0500
commit2826099522363319229627011695818908344880 (patch)
tree2d879fd781505598a2d5355f09ead6155ecda8d2 /python
parentfc216721e9ec51852de6c8bfff2cea174ab9941e (diff)
Stop importing Type Archive types in parse_type_string
CC Vector35/binaryninja-api#6235
Diffstat (limited to 'python')
-rw-r--r--python/binaryview.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index c1a57765..f9f955fe 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -7621,7 +7621,7 @@ class BinaryView:
view, while those two APIs do not.
:param str text: C source code string of type to create
- :param import_dependencies: If Type Library / Type Archive types should be imported during parsing
+ :param import_dependencies: If Type Library types should be imported during parsing
:return: A tuple of a :py:class:`Type` and type name
:rtype: tuple(Type, QualifiedName)
:Example:
@@ -7658,7 +7658,7 @@ class BinaryView:
:param str text: C source code string of types, variables, and function types, to create
:param options: Optional list of string options to be passed into the type parser
:param include_dirs: Optional list of header search directories
- :param import_dependencies: If Type Library / Type Archive types should be imported during parsing
+ :param import_dependencies: If Type Library types should be imported during parsing
:return: :py:class:`~binaryninja.typeparser.TypeParserResult` (a SyntaxError is thrown on parse error)
:rtype: TypeParserResult
:Example: