summaryrefslogtreecommitdiff
path: root/python/types.py
diff options
context:
space:
mode:
authorAlexander Khosrowshahi <alexk@vector35.com>2025-07-09 11:17:38 -0400
committerAlexander Khosrowshahi <alexk@vector35.com>2025-07-14 16:34:58 -0400
commit7a1a20e635e359ba3f42f1b2368e51edb9d94230 (patch)
tree4cf0c7b557cb304a0775529c9e4205ac92b988c7 /python/types.py
parent999058a2e4f2c4d99bcb6cdc7790ee5a350b83a7 (diff)
Change return type of parse_types_from_string to BasicTypeParserResult
Diffstat (limited to 'python/types.py')
-rw-r--r--python/types.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/types.py b/python/types.py
index 97663ff6..860fba78 100644
--- a/python/types.py
+++ b/python/types.py
@@ -53,6 +53,7 @@ SomeType = Union['TypeBuilder', 'Type']
TypeContainerType = Union['binaryview.BinaryView', 'typelibrary.TypeLibrary']
NameSpaceType = Optional[Union[str, List[str], 'NameSpace']]
TypeParserResult = typeparser.TypeParserResult
+BasicTypeParserResult = typeparser.BasicTypeParserResult
ResolveMemberCallback = Callable[['NamedTypeReferenceType', 'StructureType', int, int, int, 'StructureMember'], None]
# The following are needed to prevent the type checker from getting
# confused as we have member functions in `Type` named the same thing