diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-05-28 13:42:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 13:42:35 (GMT) |
commit | f912e5a2f6d128b17f85229b722422e4a2478e23 (patch) | |
tree | 85c00054c83116a26646a64ba999eed647d87059 /Doc | |
parent | b407ad38fb93585332c370b8fa56905fb238cdfd (diff) | |
download | cpython-f912e5a2f6d128b17f85229b722422e4a2478e23.zip cpython-f912e5a2f6d128b17f85229b722422e4a2478e23.tar.gz cpython-f912e5a2f6d128b17f85229b722422e4a2478e23.tar.bz2 |
gh-118824: Remove deprecated `master_open` and `slave_open` from `pty` (#118826)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.14.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index bc12d4b..1521647 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -175,6 +175,14 @@ pathlib :meth:`~pathlib.PurePath.is_relative_to`. In previous versions, any such arguments are joined onto *other*. +pty +___ + +* Remove deprecated :func:`!pty.master_open` and :func:`!pty.slave_open`. + They had previously raised a :exc:`DeprecationWarning` since Python 3.12. + Use :func:`pty.openpty` instead. + (Contributed by Nikita Sobolev in :gh:`118824`.) + sqlite3 ------- |