diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-12-09 14:02:54 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-12-09 14:02:54 (GMT) |
commit | 1e4ce733fcb00b9f694b9b41ce9e4cd5622607ca (patch) | |
tree | dfa7de1e3c8995420158fde041b8dafcb98d1f19 /Tools | |
parent | 0a54ae24c3494fc6c26bc7b3b1bfc9d41b734893 (diff) | |
download | cpython-1e4ce733fcb00b9f694b9b41ce9e4cd5622607ca.zip cpython-1e4ce733fcb00b9f694b9b41ce9e4cd5622607ca.tar.gz cpython-1e4ce733fcb00b9f694b9b41ce9e4cd5622607ca.tar.bz2 |
Added Sint8 and Uint8 types
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/bgen/bgen/macsupport.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/bgen/bgen/macsupport.py b/Tools/bgen/bgen/macsupport.py index fb65472..c3788b2 100644 --- a/Tools/bgen/bgen/macsupport.py +++ b/Tools/bgen/bgen/macsupport.py @@ -16,6 +16,8 @@ ScriptCode = Type("ScriptCode", "h") Size = Type("Size", "l") Style = Type("Style", "b") +UInt8 = Type("UInt8", "b") +SInt8 = Type("SInt8", "b") UInt16 = Type("UInt16", "h") SInt16 = Type("SInt16", "h") UInt32 = Type("UInt32", "l") |