diff options
| author | Glenn Smith <glenn@vector35.com> | 2023-11-06 21:22:51 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2023-11-06 21:31:10 -0500 |
| commit | 9664293566835578211572938174462967719297 (patch) | |
| tree | 5ce88ae2acb8ffbf5177da95e2332978cbb82910 /python/debuginfo.py | |
| parent | 6436615567547349434351468012512505109552 (diff) | |
Type Containers: API Docs
Diffstat (limited to 'python/debuginfo.py')
| -rw-r--r-- | python/debuginfo.py | 7 |
1 files changed, 6 insertions, 1 deletions
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]]: |
