diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-02-13 07:14:13 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-02-13 07:14:13 (GMT) |
commit | 4a8d42f73f9767622f32468c02cefe616ccb34cf (patch) | |
tree | 8e8267794820409f76cab439f238da8daa507944 /Lib/site.py | |
parent | 61dafcb6caee4c0971e8aa362b1b170ce19199eb (diff) | |
download | cpython-4a8d42f73f9767622f32468c02cefe616ccb34cf.zip cpython-4a8d42f73f9767622f32468c02cefe616ccb34cf.tar.gz cpython-4a8d42f73f9767622f32468c02cefe616ccb34cf.tar.bz2 |
We have cp932 support in standard distribution now. And there's now
no major codepages unsupported by Python, so remove the eg. case.
Diffstat (limited to 'Lib/site.py')
-rw-r--r-- | Lib/site.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/site.py b/Lib/site.py index c5f3d95..f8c000a 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -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 |