summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-03 12:41:50 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-03 12:41:50 (GMT)
commit6e0a3499abd22582dd695a667863741cea1fb749 (patch)
treeaa4235bf0496b7ec0f5d48b6996c5207ad6502a2 /Python
parentf1176c4815cd628ae443b5c4b0e1841588369776 (diff)
downloadcpython-6e0a3499abd22582dd695a667863741cea1fb749.zip
cpython-6e0a3499abd22582dd695a667863741cea1fb749.tar.gz
cpython-6e0a3499abd22582dd695a667863741cea1fb749.tar.bz2
Use PY_VERSION instead of PATCHLEVEL.
Diffstat (limited to 'Python')
-rw-r--r--Python/getversion.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/getversion.c b/Python/getversion.c
index 4553357..ead8e77 100644
--- a/Python/getversion.c
+++ b/Python/getversion.c
@@ -39,6 +39,7 @@ const char *
Py_GetVersion()
{
static char version[80];
- sprintf(version, "%.10s (%.30s) %.30s", PATCHLEVEL, Py_GetBuildInfo(), Py_GetCompiler());
+ sprintf(version, "%.10s (%.30s) %.30s", PY_VERSION,
+ Py_GetBuildInfo(), Py_GetCompiler());
return version;
}