summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-31 19:29:15 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-31 19:29:15 (GMT)
commite87c0e1eaf56a7e4e3d19eb89fd26e8c4a5217d3 (patch)
tree6dd9e6221c43de6e0083a24c7942ff8f15af1c1e /Python
parentec5ae3b9f53ab76529b040de855cd981ccf28593 (diff)
downloadcpython-e87c0e1eaf56a7e4e3d19eb89fd26e8c4a5217d3.zip
cpython-e87c0e1eaf56a7e4e3d19eb89fd26e8c4a5217d3.tar.gz
cpython-e87c0e1eaf56a7e4e3d19eb89fd26e8c4a5217d3.tar.bz2
Remove trailing whitespace.
Diffstat (limited to 'Python')
-rw-r--r--Python/getversion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getversion.c b/Python/getversion.c
index 7af16fc..7bd6efd 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;
}