Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed trailing spaces
  • Loading branch information
blhsing committed Jul 30, 2024
commit 8dc11004908b8dac26c1e55a693c15b15f4a06be
2 changes: 1 addition & 1 deletion Modules/_datetimemodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1987,7 +1987,7 @@ wrap_strftime(PyObject *object, PyObject *format, PyObject *timetuple,
long month = PyLong_AsLong(item);
if (month == -1 && PyErr_Occurred()) {
goto Done;
}
}
item = PyTuple_GET_ITEM(timetuple, 2);
long day = PyLong_AsLong(item);
if (day == -1 && PyErr_Occurred()) {
Expand Down