[Python-checkins] python/dist/src/Lib site.py,1.56,1.57
perky at users.sourceforge.net
perky at users.sourceforge.net
Fri Feb 13 02:14:16 EST 2004
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27606
Modified Files:
site.py
Log Message:
We have cp932 support in standard distribution now. And there's now
no major codepages unsupported by Python, so remove the eg. case.
Index: site.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/site.py,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** site.py 12 Feb 2004 17:35:07 -0000 1.56
--- site.py 13 Feb 2004 07:14:13 -0000 1.57
***************
*** 312,319 ****
! # On Windows, some default encodings are not provided
! # by Python (e.g. "cp932" in Japanese locale), while they
! # are always available as "mbcs" in each locale.
! # Make them usable by aliasing to "mbcs" in such a case.
if sys.platform == 'win32':
--- 312,318 ----
! # On Windows, some default encodings are not provided by Python,
! # while they are always available as "mbcs" in each locale. Make
! # them usable by aliasing to "mbcs" in such a case.
if sys.platform == 'win32':
More information about the Python-checkins
mailing list