mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Whitespace cleanup
This commit is contained in:
parent
ecebdc7469
commit
5da468f94a
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue