summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/ae/aesupport.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-03-14 23:29:08 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-03-14 23:29:08 (GMT)
commitdef77e53465d83216e145ca713fa043a05e7f07a (patch)
treefab6951c7f3b5a7106408fdc9812d08256843b2a /Mac/Modules/ae/aesupport.py
parent7ceab654684eb3041c3d1e25ea860b7bd76daa2f (diff)
downloadcpython-def77e53465d83216e145ca713fa043a05e7f07a.zip
cpython-def77e53465d83216e145ca713fa043a05e7f07a.tar.gz
cpython-def77e53465d83216e145ca713fa043a05e7f07a.tar.bz2
AETransactionID was mistakenly defined as a short (it is a long). Fixed.
Diffstat (limited to 'Mac/Modules/ae/aesupport.py')
-rw-r--r--Mac/Modules/ae/aesupport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/ae/aesupport.py b/Mac/Modules/ae/aesupport.py
index d82496b..3695037 100644
--- a/Mac/Modules/ae/aesupport.py
+++ b/Mac/Modules/ae/aesupport.py
@@ -12,7 +12,7 @@ AESendMode = Type("AESendMode", "l")
AESendPriority = Type("AESendPriority", "h")
AEInteractAllowed = Type("AEInteractAllowed", "b")
AEReturnID = Type("AEReturnID", "h")
-AETransactionID = Type("AETransactionID", "h")
+AETransactionID = Type("AETransactionID", "l")