]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
setup: print out the internal unicode representation of python in the "show-tool...
authorzooko <zooko@zooko.com>
Mon, 17 Aug 2009 01:14:19 +0000 (06:44 +0530)
committerzooko <zooko@zooko.com>
Mon, 17 Aug 2009 01:14:19 +0000 (06:44 +0530)
Ignore-this: c2e89ce65bd82c38d6abd97e76425ce9
To investigate http://bugs.python.org/setuptools/issue78 .

darcs-hash:a6bda22e3a0ba1cb608146e04dd85538a6b2b0f5

misc/show-tool-versions.py

index 95e84a27d749669a10df1b66c6141def38d746ab..8fc838dc5a6b343c20febf9bb4b72b97929cb361 100755 (executable)
@@ -3,7 +3,7 @@
 import sys
 import subprocess
 
-print "python:", sys.version.replace("\n", " ")
+print "python:", sys.version.replace("\n", " ") + ', maxunicode: ' + str(sys.maxunicode)
 
 try:
     out = subprocess.Popen(["buildbot", "--version"],