From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 9 Jul 2009 00:45:33 +0000 (-0700)
Subject: setup: add sys.maxunicode to the show-tool-versions output in order to investigate... 
X-Git-Url: https://git.rkrishnan.org/simplejson/__init__.py.html?a=commitdiff_plain;h=7682f6b120b3371b0aa8b6f75e4ddedf8b7686a9;p=tahoe-lafs%2Ftahoe-lafs.git

setup: add sys.maxunicode to the show-tool-versions output in order to investigate http://bugs.python.org/setuptools/issue78
---

diff --git a/misc/show-tool-versions.py b/misc/show-tool-versions.py
index 95e84a27..8fc838dc 100644
--- 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"],