Message76264
| Author |
MrJean1 |
| Recipients |
MrJean1, amaury.forgeotdarc, loewis, mark.dickinson |
| Date |
2008年11月22日.23:21:52 |
| SpamBayes Score |
6.696073e-05 |
| Marked as misclassified |
No |
| Message-id |
<1227396113.29.0.0799909036884.issue4388@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
The results from this script
import os, sys
print('Python %s' % sys.version.split()[0])
print('env[LANG]: %s' % os.environ.get('LANG', '<not set>'))
print('default encoding: %s' % sys.getdefaultencoding())
print('filesystem encoding: %s' % sys.getfilesystemencoding())
are with Python 3.0:
Python 3.0rc3
env[LANG]: <not set>
default encoding: utf-8
filesystem encoding: utf-8
but for Python 2.3 thru 2.6:
Python 2.6
env[LANG]: <not set>
default encoding: ascii
filesystem encoding: utf-8
All with Python built from source on MacOS X 10.4.11 (Intel). |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2008年11月22日 23:21:53 | MrJean1 | set | recipients:
+ MrJean1, loewis, amaury.forgeotdarc, mark.dickinson |
| 2008年11月22日 23:21:53 | MrJean1 | set | messageid: <1227396113.29.0.0799909036884.issue4388@psf.upfronthosting.co.za> |
| 2008年11月22日 23:21:52 | MrJean1 | link | issue4388 messages |
| 2008年11月22日 23:21:52 | MrJean1 | create |
|