diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-01 15:08:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-01 15:08:23 (GMT) |
commit | 4e147caf3fcb6af9ed28b87a09c72f294d8f60bd (patch) | |
tree | 5544af933bb499913407e1b1dcdb73f2b72fc071 /Misc | |
parent | 48054d2306fed2a2a53d8e5dba9c1aa7ef138ed5 (diff) | |
download | cpython-4e147caf3fcb6af9ed28b87a09c72f294d8f60bd.zip cpython-4e147caf3fcb6af9ed28b87a09c72f294d8f60bd.tar.gz cpython-4e147caf3fcb6af9ed28b87a09c72f294d8f60bd.tar.bz2 |
[3.13] Revert "[3.13] gh-69214: Fix fcntl.ioctl() request type (GH-119498) (… (#119906)
Revert "[3.13] gh-69214: Fix fcntl.ioctl() request type (GH-119498) (#119504)"
This reverts commit 0bab0b3a53da735838720f96f3d3bf86ca6ba125.
The change modified how negative values, like termios.TIOCSWINSZ, was
treated and is actually backward incompatible.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-05-24-11-47-08.gh-issue-69214.Grl6zF.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-05-24-11-47-08.gh-issue-69214.Grl6zF.rst b/Misc/NEWS.d/next/Library/2024-05-24-11-47-08.gh-issue-69214.Grl6zF.rst deleted file mode 100644 index 8c3a36c..0000000 --- a/Misc/NEWS.d/next/Library/2024-05-24-11-47-08.gh-issue-69214.Grl6zF.rst +++ /dev/null @@ -1,3 +0,0 @@ -Fix ``fcntl.ioctl()`` *request* parameter: use an ``unsigned long`` instead of -an ``unsigned int`` for the *request* parameter of :func:`fcntl.ioctl` to -support requests larger than ``UINT_MAX``. Patch by Victor Stinner. |