mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
gh-110850: Replace _PyTime_t with PyTime_t (#115719)
Run command: sed -i -e 's!\<_PyTime_t\>!PyTime_t!g' $(find -name "*.c" -o -name "*.h")
This commit is contained in:
parent
0749244d13
commit
9af80ec83d
31 changed files with 341 additions and 341 deletions
|
|
@ -10410,7 +10410,7 @@ build_itimerspec(const struct itimerspec* curr_value)
|
|||
static PyObject *
|
||||
build_itimerspec_ns(const struct itimerspec* curr_value)
|
||||
{
|
||||
_PyTime_t value, interval;
|
||||
PyTime_t value, interval;
|
||||
if (_PyTime_FromTimespec(&value, &curr_value->it_value) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue