From: Jack Jansen Date: Wed, 18 Jul 2001 22:37:56 +0000 (+0000) Subject: If Python doesn't have a Unicode codec for the current system encoding X-Git-Tag: v2.1.1~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=774a968a6493e4d2333d80a3b9205df4f1c6fc06;p=thirdparty%2FPython%2Fcpython.git If Python doesn't have a Unicode codec for the current system encoding return "ascii", not "macroman". --- diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index c760107a990f..5fdfe559efa4 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -227,7 +227,7 @@ char *PyMac_getscript() case smCyrillic: return "mac-cyrillic"; default: - return "mac-roman"; /* better than nothing */ + return "ascii"; /* better than nothing */ } }