diff options
| author | Victor Stinner <vstinner@python.org> | 2024-02-20 15:02:27 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-20 15:02:27 (GMT) |
| commit | 9af80ec83d1647a472331bd1333a7fa9108fe98e (patch) | |
| tree | 855d09a92949b6cbe2b6a9c177bfd399a87a2fa6 /Modules/posixmodule.c | |
| parent | 0749244d13412d7cb5b53d834f586f2198f5b9a6 (diff) | |
| download | cpython-9af80ec83d1647a472331bd1333a7fa9108fe98e.zip cpython-9af80ec83d1647a472331bd1333a7fa9108fe98e.tar.gz cpython-9af80ec83d1647a472331bd1333a7fa9108fe98e.tar.bz2 | |
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")
Diffstat (limited to 'Modules/posixmodule.c')
| -rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 9d9c9bd..4165fb6 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -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; } |
