diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-07-15 20:58:44 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-07-15 20:58:44 (GMT) |
commit | 3fded4bb29356d407b3514612a3cfaf5e9e344bd (patch) | |
tree | 33cb2c5f9a89510a1d2605b027df157992c63b22 /Lib | |
parent | efd7b001d62f81d7e4d9d11960948f21b49e7ac0 (diff) | |
download | cpython-3fded4bb29356d407b3514612a3cfaf5e9e344bd.zip cpython-3fded4bb29356d407b3514612a3cfaf5e9e344bd.tar.gz cpython-3fded4bb29356d407b3514612a3cfaf5e9e344bd.tar.bz2 |
-- fixed the comment, too
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/site.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/site.py b/Lib/site.py index 34be9ec..b69d30d 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -120,9 +120,9 @@ __builtin__.quit = __builtin__.exit = exit del exit # -# Set the string encoding used by the Unicode implementation to the -# encoding used by the default locale of this system. If the default -# encoding cannot be determined or is unknown, it defaults to 'ascii'. +# Set the string encoding used by the Unicode implementation. The +# default is 'ascii', but if you're willing to experiment, you can +# change this. encoding = "ascii" # default |