diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-10-27 06:04:52 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-10-27 06:04:52 (GMT) |
commit | 96bf3cc3fcf48b47230d13bb07d45abc17ea6ac9 (patch) | |
tree | 3456186efc999797f4870272fa24885d416675ef /Lib | |
parent | 3d7a90dea101021f846173b03b3d0a9c25a9d6b1 (diff) | |
download | cpython-96bf3cc3fcf48b47230d13bb07d45abc17ea6ac9.zip cpython-96bf3cc3fcf48b47230d13bb07d45abc17ea6ac9.tar.gz cpython-96bf3cc3fcf48b47230d13bb07d45abc17ea6ac9.tar.bz2 |
Get a bunch of tests working on Mac OS. I suspect that a bunch of the
ord()s in Lib/plat-mac/ic.py need to be removed.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/plat-mac/ic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/ic.py b/Lib/plat-mac/ic.py index 769400a..ba21461 100644 --- a/Lib/plat-mac/ic.py +++ b/Lib/plat-mac/ic.py @@ -65,7 +65,7 @@ def _decode_fontrecord(data, key): return size, face, data[5:5+namelen] def _decode_boolean(data, key): - return ord(data[0]) + return data[0] def _decode_text(data, key): return data |