8000 Document 3.13, 3.14, 4.0 and future removals by hugovk · Pull Request #93986 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Document 3.13, 3.14, 4.0 and future removals #93986

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

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge remote-tracking branch 'upstream/main' into document-pending-re…
…movals
  • Loading branch information
hugovk committed Aug 16, 2023
commit 6853206e78025d54e57509a391c82ecdadeffb7d
32 changes: 32 additions & 0 deletions Doc/whatsnew/3.12.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1111,10 +1111,33 @@ Modules (see :pep:`594`):
* :mod:`!telnetlib`
* :mod:`!uu`
* :mod:`!xdrlib`
<<<<<<< HEAD

Other modules:

* :mod:`lib2to3`, and the ``2to3`` program (:gh:`84540`)
||||||| 15f4a35487
* :mod:`aifc`
* :mod:`audioop`
* :mod:`cgi`
* :mod:`cgitb`
* :mod:`chunk`
* :mod:`crypt`
* :mod:`imghdr`
* :mod:`mailcap`
* :mod:`msilib`
* :mod:`nis`
* :mod:`nntplib`
* :mod:`ossaudiodev`
* :mod:`pipes`
* :mod:`sndhdr`
* :mod:`spwd`
* :mod:`sunau`
* :mod:`telnetlib`
* :mod:`uu`
* :mod:`xdrlib`
=======
>>>>>>> upstream/main

APIs:

Expand Down Expand Up @@ -1150,10 +1173,15 @@ Pending Removal in Python 3.14
Use :class:`ast.Constant` instead.
(Contributed by Serhiy Storchaka in :gh:`90953`.)

<<<<<<< HEAD
* :mod:`asyncio`: the *msg* parameter of both
:meth:`asyncio.Future.cancel` and
:meth:`asyncio.Task.cancel` (:gh:`90985`)

||||||| 15f4a35487
* Deprecated the following :mod:`importlib.abc` classes, scheduled for removal in
=======
>>>>>>> upstream/main
* :mod:`collections.abc`: Deprecated :class:`collections.abc.ByteString`.
Prefer :class:`Sequence` or :class:`collections.abc.Buffer`.
For use in typing, prefer a union, like ``bytes | bytearray``, or :class:`collections.abc.Buffer`.
Expand Down Expand Up @@ -1219,9 +1247,13 @@ Pending Removal in Python 3.14
but it only got a proper :exc:`DeprecationWarning` in 3.12.
May be removed in 3.14.
(Contributed by Nikita Sobolev in :gh:`101866`.)
<<<<<<< HEAD

* Creating :c:data:`immutable types <Py_TPFLAGS_IMMUTABLETYPE>` with mutable
bases using the C API (:gh:`95388`)
||||||| 15f4a35487
=======
>>>>>>> upstream/main

Pending Removal in Future Versions
----------------------------------
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0