diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-02 14:50:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 14:50:18 (GMT) |
commit | 594b00057e667e0d8d4e41748be056cdd829e919 (patch) | |
tree | b970b7d385d30e9bb423a30bc3029cc94fe4ca4b /Doc/whatsnew | |
parent | 4f9b706c6f5d4422a398146bfd011daedaef1851 (diff) | |
download | cpython-594b00057e667e0d8d4e41748be056cdd829e919.zip cpython-594b00057e667e0d8d4e41748be056cdd829e919.tar.gz cpython-594b00057e667e0d8d4e41748be056cdd829e919.tar.bz2 |
gh-108765: Python.h no longer includes <unistd.h> (#108783)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index eb3d832..401de11 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -929,6 +929,11 @@ Porting to Python 3.13 also the ``HAVE_IEEEFP_H`` macro. (Contributed by Victor Stinner in :gh:`108765`.) +* ``Python.h`` no longer includes the ``<unistd.h>`` standard header file. If + needed, it should now be included explicitly. For example, it provides the + functions: ``close()``, ``getpagesize()``, ``getpid()`` and ``sysconf()``. + (Contributed by Victor Stinner in :gh:`108765`.) + Deprecated ---------- |