From 16b3d7a2027953523fe04b5263204dfe46dc7da2 Mon Sep 17 00:00:00 2001 From: zooko Date: Mon, 17 Aug 2009 06:44:19 +0530 Subject: [PATCH] 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 --- misc/show-tool-versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"], -- 2.37.2