gh-110850: PyTime_Time() return 0 on success (GH-115713)

Thanks!
This commit is contained in:
Victor Stinner 2024-02-20 14:35:41 +01:00 committed by GitHub
parent dcba21f905
commit d24bed5ba0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1053,7 +1053,7 @@ PyTime_Time(PyTime_t *result)
*result = 0;
return -1;
}
return 1;
return 0;
}
int