[Python-checkins] r87738 - python/branches/py3k/Modules/timemodule.c

alexander.belopolsky python-checkins at python.org
Tue Jan 4 18:15:52 CET 2011


Author: alexander.belopolsky
Date: Tue Jan  4 18:15:52 2011
New Revision: 87738

Log:
Whitespace cleanup

Modified:
   python/branches/py3k/Modules/timemodule.c

Modified: python/branches/py3k/Modules/timemodule.c
==============================================================================
--- python/branches/py3k/Modules/timemodule.c	(original)
+++ python/branches/py3k/Modules/timemodule.c	Tue Jan  4 18:15:52 2011
@@ -1,4 +1,3 @@
-
 /* Time module */
 
 #include "Python.h"
@@ -683,7 +682,7 @@
     timeptr = localtime(&tt);
     if (timeptr == NULL) {
         PyErr_SetString(PyExc_ValueError, "unconvertible time");
-        return NULL;        
+        return NULL;
     }
     return _asctime(timeptr);
 }


More information about the Python-checkins mailing list