From: zooko <zooko@zooko.com>
Date: Mon, 17 Aug 2009 01:14:19 +0000 (+0530)
Subject: setup: print out the internal unicode representation of python in the "show-tool... 
X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/uri/specifications/cyclelanguage?a=commitdiff_plain;h=16b3d7a2027953523fe04b5263204dfe46dc7da2;p=tahoe-lafs%2Fzfec.git

setup: print out the internal unicode representation of python in the "show-tool-versions" tool

Ignore-this: c2e89ce65bd82c38d6abd97e76425ce9
To investigate http://bugs.python.org/setuptools/issue78 .

darcs-hash:a6bda22e3a0ba1cb608146e04dd85538a6b2b0f5
---

diff --git a/misc/show-tool-versions.py b/misc/show-tool-versions.py
index 95e84a2..8fc838d 100755
--- a/misc/show-tool-versions.py
+++ b/misc/show-tool-versions.py
@@ -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"],