diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-02 15:51:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 15:51:19 (GMT) |
commit | e7de0c5901b85a5241386a33f98c27a4e08d5384 (patch) | |
tree | eb17a2a2dfa1c245729e3aa7b17ccc0da459162d /Doc/whatsnew | |
parent | bdc3c884cdc90102ad68b6b55dc9b988e729ae35 (diff) | |
download | cpython-e7de0c5901b85a5241386a33f98c27a4e08d5384.zip cpython-e7de0c5901b85a5241386a33f98c27a4e08d5384.tar.gz cpython-e7de0c5901b85a5241386a33f98c27a4e08d5384.tar.bz2 |
gh-108765: Python.h no longer includes <sys/time.h> (#108775)
Python.h no longer includes <time.h>, <sys/select.h> and <sys/time.h>
standard header files.
* Add <time.h> include to xxsubtype.c.
* Add <sys/time.h> include to posixmodule.c and semaphore.c.
* readline.c includes <sys/select.h> instead of <sys/time.h>.
* resource.c no longer includes <time.h> and <sys/time.h>.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 401de11..1c91a1d 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -934,6 +934,14 @@ Porting to Python 3.13 functions: ``close()``, ``getpagesize()``, ``getpid()`` and ``sysconf()``. (Contributed by Victor Stinner in :gh:`108765`.) +* ``Python.h`` no longer includes these standard header files: ``<time.h>``, + ``<sys/select.h>`` and ``<sys/time.h>``. If needed, they should now be + included explicitly. For example, ``<time.h>`` provides the ``clock()`` and + ``gmtime()`` functions, ``<sys/select.h>`` provides the ``select()`` + function, and ``<sys/time.h>`` provides the ``futimes()``, ``gettimeofday()`` + and ``setitimer()`` functions. + (Contributed by Victor Stinner in :gh:`108765`.) + Deprecated ---------- |