diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-03-14 13:56:01 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2022-03-14 13:56:01 -0400 |
| commit | f336fa97d187890d7ec25973387a9715e67ea813 (patch) | |
| tree | bf64fce6bcac28395124d62854d3aaf7ceb8ae57 /python/types.py | |
| parent | 2da52de594c47ba5427806a98d70ebaf09216a33 (diff) | |
add additional documentation warning users from creating objects with handles directly
Diffstat (limited to 'python/types.py')
| -rw-r--r-- | python/types.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/types.py b/python/types.py index b086ef78..62cc0154 100644 --- a/python/types.py +++ b/python/types.py @@ -476,6 +476,9 @@ class MutableTypeBuilder: class TypeBuilder: + """ + All TypeBuilder objects should not be instantiated directly but created via ``.create`` APIs. + """ def __init__( self, handle: core.BNTypeBuilderHandle, platform: '_platform.Platform' = None, confidence: int = core.max_confidence |
