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

Skip to content

Commit d24bed5

Browse files
authored
gh-110850: PyTime_Time() return 0 on success (GH-115713)
Thanks!
1 parent dcba21f commit d24bed5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/pytime.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ PyTime_Time(PyTime_t *result)
10531053
*result = 0;
10541054
return -1;
10551055
}
1056-
return 1;
1056+
return 0;
10571057
}
10581058

10591059
int

0 commit comments

Comments
 (0)