ianaré wrote:
> maybe a bit off topic, but how does one find the console's encoding
> from within python?
> 
In [1]: import sys

In [3]: sys.stdout.encoding
Out[3]: 'cp437'

In [4]: sys.stdin.encoding
Out[4]: 'cp437'

Kent
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to