[Python-checkins] r83356 - python/branches/py3k/Python/getversion.c

georg.brandl python-checkins at python.org
Sat Jul 31 21:29:15 CEST 2010


Author: georg.brandl
Date: Sat Jul 31 21:29:15 2010
New Revision: 83356

Log:
Remove trailing whitespace.

Modified:
   python/branches/py3k/Python/getversion.c

Modified: python/branches/py3k/Python/getversion.c
==============================================================================
--- python/branches/py3k/Python/getversion.c	(original)
+++ python/branches/py3k/Python/getversion.c	Sat Jul 31 21:29:15 2010
@@ -9,7 +9,7 @@
 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;
 }


More information about the Python-checkins mailing list