]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: have the buildbots print out locale.getpreferredencoding(), locale.getdefaultl...
authorZooko O'Whielacronx <zooko@zooko.com>
Sat, 5 Jun 2010 16:29:32 +0000 (09:29 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Sat, 5 Jun 2010 16:29:32 +0000 (09:29 -0700)
Even though that latter one is completely useless, I'm curious.

misc/show-tool-versions.py

index e76215c2bf9c356472de44da4f4f4e94b21d2b3b..d1c98b26dab452d472c6d6058c56799671788643 100644 (file)
@@ -1,6 +1,6 @@
 #! /usr/bin/env python
 
-import os, subprocess, sys
+import locale, os, subprocess, sys
 
 def print_platform():
     try:
@@ -17,7 +17,11 @@ def print_python_ver():
     print ', maxunicode: ' + str(sys.maxunicode),
     print ', stdout.encoding: ' + str(sys.stdout.encoding),
     print ', stdin.encoding: ' + str(sys.stdin.encoding),
-    print ', filesystem.encoding: ' + str(sys.getfilesystemencoding())
+    print ', filesystem.encoding: ' + str(sys.getfilesystemencoding()),
+    print ', locale.getpreferredencoding: ' + str(locale.getpreferredencoding()),
+    print ', os.path.supports_unicode_filenames: ' + str(os.path.supports_unicode_filenames),
+    print ', locale.defaultlocale: ' + str(locale.getdefaultlocale()),
+    print ', locale.locale: ' + str(locale.getlocale())
 
 def print_cmd_ver(cmdlist, label=None):
     try: