diff options
author | Guido van Rossum <guido@python.org> | 1999-01-27 17:53:11 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-27 17:53:11 +0000 |
commit | 2ef8d8a6debc71cd8faa1ece5143bfee2c8b4a1d (patch) | |
tree | ec5f18231d02e79088b351af795245773ad463c1 /Python/getversion.c | |
parent | 75c74c5942e3112a10de0cd687dd27192455f110 (diff) | |
download | cpython-2ef8d8a6debc71cd8faa1ece5143bfee2c8b4a1d.tar.gz |
Patches by William Lewis for Nextstep descendants.
Diffstat (limited to 'Python/getversion.c')
-rw-r--r-- | Python/getversion.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |