mirror of https://github.com/python/cpython
gh-110850: PyTime_Time() return 0 on success (GH-115713)
Thanks!
This commit is contained in:
parent
dcba21f905
commit
d24bed5ba0
|
@ -1053,7 +1053,7 @@ PyTime_Time(PyTime_t *result)
|
|||
*result = 0;
|
||||
return -1;
|
||||
}
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in New Issue