diff options
author | Georg Brandl <georg@python.org> | 2010-07-31 19:29:15 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-31 19:29:15 +0000 |
commit | e87c0e1eaf56a7e4e3d19eb89fd26e8c4a5217d3 (patch) | |
tree | 6dd9e6221c43de6e0083a24c7942ff8f15af1c1e /Python | |
parent | ec5ae3b9f53ab76529b040de855cd981ccf28593 (diff) | |
download | cpython-git-e87c0e1eaf56a7e4e3d19eb89fd26e8c4a5217d3.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getversion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getversion.c b/Python/getversion.c index 7af16fc810..7bd6efd0a0 100644 --- a/Python/getversion.c +++ b/Python/getversion.c @@ -9,7 +9,7 @@ const char * Py_GetVersion(void) { static char version[250]; - PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s", + PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s", PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler()); return version; } |