[Python-checkins] CVS: python/dist/src/Mac/Python macglue.c,1.97,1.97.4.1
Jack Jansen
jackjansen@users.sourceforge.net
2001年7月18日 15:37:58 -0700
Update of /cvsroot/python/python/dist/src/Mac/Python
In directory usw-pr-cvs1:/tmp/cvs-serv15131/Python/Mac/Python
Modified Files:
Tag: release21-maint
macglue.c
Log Message:
If Python doesn't have a Unicode codec for the current system encoding
return "ascii", not "macroman".
Index: macglue.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Python/macglue.c,v
retrieving revision 1.97
retrieving revision 1.97.4.1
diff -C2 -r1.97 -r1.97.4.1
*** macglue.c 2001年07月12日 21:48:10 1.97
--- macglue.c 2001年07月18日 22:37:56 1.97.4.1
***************
*** 228,232 ****
return "mac-cyrillic";
default:
! return "mac-roman"; /* better than nothing */
}
}
--- 228,232 ----
return "mac-cyrillic";
default:
! return "ascii"; /* better than nothing */
}
}