From: Alexander Belopolsky Date: Tue, 4 Jan 2011 17:15:52 +0000 (+0000) Subject: Whitespace cleanup X-Git-Tag: v3.2rc1~194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5da468f94adcf1eea2f1e29a668c82a34f4391df;p=python Whitespace cleanup --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 29a2f2dc99..ebc2b814bc 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -1,4 +1,3 @@ - /* Time module */ #include "Python.h" @@ -683,7 +682,7 @@ time_ctime(PyObject *self, PyObject *args) timeptr = localtime(&tt); if (timeptr == NULL) { PyErr_SetString(PyExc_ValueError, "unconvertible time"); - return NULL; + return NULL; } return _asctime(timeptr); }