]> granicus.if.org Git - python/commitdiff
We have cp932 support in standard distribution now. And there's now
authorHye-Shik Chang <hyeshik@gmail.com>
Fri, 13 Feb 2004 07:14:13 +0000 (07:14 +0000)
committerHye-Shik Chang <hyeshik@gmail.com>
Fri, 13 Feb 2004 07:14:13 +0000 (07:14 +0000)
no major codepages unsupported by Python, so remove the eg. case.

Lib/site.py

index c5f3d95501bad6b51f2622c5e9bd041a1a29e1e8..f8c000a6788d441e4db28574311d260de182a734 100644 (file)
@@ -311,10 +311,9 @@ class _Helper:
 __builtin__.help = _Helper()
 
 
-# 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.
+# 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':
     import locale, codecs