[Python-checkins] python/dist/src/Mac/Python macmain.c,1.81,1.81.2.1

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 07 Jan 2003 15:23:43 -0800


Update of /cvsroot/python/python/dist/src/Mac/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv31924

Modified Files:
      Tag: r23a1-branch
	macmain.c 
Log Message:
Made "ascii" the default encoding for MacPython, as suggested by MvL, and ripped out my previous changes to test_unicode. Doing this for 2.3a1 should give people enough time to complain, if they want to, and then we can see whether we want to do anything about it.

Index: macmain.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Python/macmain.c,v
retrieving revision 1.81
retrieving revision 1.81.2.1
diff -C2 -d -r1.81 -r1.81.2.1
*** macmain.c	13 Dec 2002 13:57:35 -0000	1.81
--- macmain.c	7 Jan 2003 23:23:39 -0000	1.81.2.1
***************
*** 490,494 ****
--- 490,497 ----
  	Py_Initialize();
  	
+ #if 0
+ 	/* According to Martin v. Loewis this is a bad idea... */
  	PyUnicode_SetDefaultEncoding(PyMac_getscript());
+ #endif
  	
  	PySys_SetArgv(argc, argv);