summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/waste/wastesupport.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-09-08 22:06:16 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-09-08 22:06:16 (GMT)
commit97ed907df61f0de70822efb9ddca9770ea0a544c (patch)
treeface4f4464664bc61446931bd125dfc597a86516 /Mac/Modules/waste/wastesupport.py
parent53bafd97d00ef636dfd31525ae8bbcd6e6bc6717 (diff)
downloadcpython-97ed907df61f0de70822efb9ddca9770ea0a544c.zip
cpython-97ed907df61f0de70822efb9ddca9770ea0a544c.tar.gz
cpython-97ed907df61f0de70822efb9ddca9770ea0a544c.tar.bz2
Some of the types are signed 8 bit ints. Fixed.
Diffstat (limited to 'Mac/Modules/waste/wastesupport.py')
-rw-r--r--Mac/Modules/waste/wastesupport.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/waste/wastesupport.py b/Mac/Modules/waste/wastesupport.py
index e2268ee..7b2ff13 100644
--- a/Mac/Modules/waste/wastesupport.py
+++ b/Mac/Modules/waste/wastesupport.py
@@ -37,8 +37,8 @@ OptStScrpHandle = OpaqueByValueType("StScrpHandle", "OptResObj")
WEStyleMode = Type("WEStyleMode", "H")
WEActionKind = Type("WEActionKind", "h")
-WEAlignment = Type("WEAlignment", "b")
-WEEdge = Type("WEEdge", "b")
+WEAlignment = Type("WEAlignment", "B")
+WEEdge = Type("WEEdge", "B")
WEDirection = Type("WEDirection", "h")
WESoupHandle = OpaqueByValueType("WESoupHandle", "ResObj")
WEFontTableHandle = OpaqueByValueType("WEFontTableHandle", "ResObj")