diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/types.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/types.py b/python/types.py index 4de55700..05e531e1 100644 --- a/python/types.py +++ b/python/types.py @@ -518,6 +518,10 @@ class Type(object): return Type(core.BNCreateBoolType()) @classmethod + def char(self): + return Type.int(1, True) + + @classmethod def int(self, width, sign = None, altname=""): """ ``int`` class method for creating an int Type. |
