From 54ecc3d24f52ae45ca54a24167e434915c88b60f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 27 Jan 1999 17:53:11 +0000 Subject: Patches by William Lewis for Nextstep descendants. --- Python/getversion.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/getversion.c') diff --git a/Python/getversion.c b/Python/getversion.c index ead8e77763..9f57d6e5a6 100644 --- a/Python/getversion.c +++ b/Python/getversion.c @@ -38,8 +38,8 @@ PERFORMANCE OF THIS SOFTWARE. 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; } -- cgit v1.2.1