8000 gh-85984: Add POSIX pseudo-terminal functions. by 8vasu · Pull Request #102413 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-85984: Add POSIX pseudo-terminal functions. #102413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 29, 2024
Merged
Prev Previous commit
Next Next commit
versionadded:: 3.12
  • Loading branch information
gpshead committed May 19, 2023
commit c99e91b63f6f21f1fb8fe9cb4ed11dee93abade1
8 changes: 8 additions & 0 deletions Doc/library/os.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1129,6 +1129,8 @@ as internal buffering of data.

.. availability:: Unix, not Emscripten, not WASI.

.. versionadded:: 3.12


.. function:: isatty(fd, /)

Expand Down Expand Up @@ -1407,6 +1409,8 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo

.. availability:: Unix, not Emscripten, not WASI.

.. versionadded:: 3.12


.. function:: preadv(fd, buffers, offset, flags=0, /)

Expand Down Expand Up @@ -1475,6 +1479,8 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo

.. availability:: Unix, not Emscripten, not WASI.

.. versionadded:: 3.12


.. function:: pwrite(fd, str, offset, /)

Expand Down Expand Up @@ -1736,6 +1742,8 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo

.. availability:: Unix, not Emscripten, not WASI.

.. versionadded:: 3.12


.. function:: write(fd, str, /)

Expand Down
0