From 7682f6b120b3371b0aa8b6f75e4ddedf8b7686a9 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 8 Jul 2009 17:45:33 -0700
Subject: [PATCH] setup: add sys.maxunicode to the show-tool-versions output in
 order to investigate http://bugs.python.org/setuptools/issue78

---
 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 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"],
-- 
2.45.2