From 9664293566835578211572938174462967719297 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 6 Nov 2023 21:22:51 -0500 Subject: Type Containers: API Docs --- python/debuginfo.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'python/debuginfo.py') diff --git a/python/debuginfo.py b/python/debuginfo.py index 65f879ea..6884a9ca 100644 --- a/python/debuginfo.py +++ b/python/debuginfo.py @@ -305,7 +305,12 @@ class DebugInfo(object): def get_type_container(self, parser_name: str) -> 'typecontainer.TypeContainer': - """Returns a TypeContainer interface for one of the parsers in this DebugInfo""" + """ + Type Container for all types in the DebugInfo that resulted from the parse of + the given parser. + :param parser_name: Name of parser + :return: Type Container for types from that parser + """ return typecontainer.TypeContainer(core.BNGetDebugInfoTypeContainer(self.handle, parser_name)) def types_from_parser(self, name: Optional[str] = None) -> Iterator[Tuple[str, _types.Type]]: -- cgit v1.3.1