Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
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
fix longline
  • Loading branch information
neonene authored Apr 26, 2024
commit cd39278e808245252fd00b71272c77bda70338dd
3 changes: 2 additions & 1 deletion Modules/_datetimemodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -6895,7 +6895,8 @@ datetime_destructor(PyObject *op)
}

static PyObject *
create_timezone_from_delta(datetime_state *st, int days, int sec, int ms, int normalize)
create_timezone_from_delta(datetime_state *st,
int days, int sec, int ms, int normalize)
{
PyObject *delta = new_delta(st, days, sec, ms, normalize);
if (delta == NULL) {
Expand Down