From: Georg Brandl Date: Sat, 31 Jul 2010 19:29:15 +0000 (+0000) Subject: Remove trailing whitespace. X-Git-Tag: v3.2a2~601 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e87c0e1eaf56a7e4e3d19eb89fd26e8c4a5217d3;p=thirdparty%2FPython%2Fcpython.git Remove trailing whitespace. --- diff --git a/Python/getversion.c b/Python/getversion.c index 7af16fc8109e..7bd6efd0a015 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; }