Patches by William Lewis for Nextstep descendants.
diff --git a/Python/getversion.c b/Python/getversion.c
index ead8e77..9f57d6e 100644
--- a/Python/getversion.c
+++ b/Python/getversion.c
@@ -38,8 +38,8 @@
 const char *
 Py_GetVersion()
 {
-	static char version[80];
-	sprintf(version, "%.10s (%.30s) %.30s", PY_VERSION,
+	static char version[100];
+	sprintf(version, "%.10s (%.40s) %.40s", PY_VERSION,
 		Py_GetBuildInfo(), Py_GetCompiler());
 	return version;
 }