mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
gh-110850: PyTime_Time() return 0 on success (GH-115713)
Thanks!
This commit is contained in:
parent
dcba21f905
commit
d24bed5ba0
1 changed files with 1 additions and 1 deletions
|
@ -1053,7 +1053,7 @@ PyTime_Time(PyTime_t *result)
|
|||
*result = 0;
|
||||
return -1;
|
||||
}
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue