mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +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 */
|
/* Time module */
|
||||||
|
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
|
@ -683,7 +682,7 @@ time_ctime(PyObject *self, PyObject *args)
|
||||||
timeptr = localtime(&tt);
|
timeptr = localtime(&tt);
|
||||||
if (timeptr == NULL) {
|
if (timeptr == NULL) {
|
||||||
PyErr_SetString(PyExc_ValueError, "unconvertible time");
|
PyErr_SetString(PyExc_ValueError, "unconvertible time");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
return _asctime(timeptr);
|
return _asctime(timeptr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue