Received Sun 06 Feb 2005 4:15pm +1100 from Joe Wreschnig: > Can you send the output of the following Python script? Thanks. > > #!/usr/bin/python > import locale > print locale.getdefaultlocale() > print locale.getpreferredencoding() > -- > Joe Wreschnig <[EMAIL PROTECTED]>
$ cat test.py #!/usr/bin/python import locale print locale.getdefaultlocale() print locale.getpreferredencoding() $ ./test.py (None, None) ANSI_X3.4-1968 Regards, Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

