From 96bf3cc3fcf48b47230d13bb07d45abc17ea6ac9 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sat, 27 Oct 2007 06:04:52 +0000 Subject: [PATCH] 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. --- Lib/plat-mac/ic.py | 2 +- Mac/Modules/file/_Filemodule.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/plat-mac/ic.py b/Lib/plat-mac/ic.py index 769400ae8ea..ba2146122f0 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 diff --git a/Mac/Modules/file/_Filemodule.c b/Mac/Modules/file/_Filemodule.c index 0ca9e3bd9af..ffc16d5badc 100644 --- a/Mac/Modules/file/_Filemodule.c +++ b/Mac/Modules/file/_Filemodule.c @@ -1312,7 +1312,7 @@ static PyObject *FSSpec_as_pathname(FSSpecObject *_self, PyObject *_args) PyMac_Error(err); return NULL; } - _res = PyString_FromString(strbuf); + _res = PyUnicode_FromString(strbuf); return _res; }