8000 gh-122085: Use include files for `whatsnew/3.14.rst` deprecations by hugovk · Pull Request #122242 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-122085: Use include files for whatsnew/3.14.rst deprecations #122242

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 7 commits into from
Jul 27, 2024
Merged
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
Next Next commit
Prefix deprecations with module name
  • Loading branch information
hugovk committed Jul 24, 2024
commit 79d883473adef8068178da9d0330ff43c26358fb
12 changes: 6 additions & 6 deletions Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,22 +181,23 @@ asyncio
reduces memory usage.
(Contributed by Kumar Aditya in :gh:`107803`.)



Deprecated
==========

* Passing a complex number as the *real* or *imag* argument in the
* :mod:`builtins`:
Passing a complex number as the *real* or *imag* argument in the
:func:`complex` constructor is now deprecated; it should only be passed
as a single positional argument.
(Contributed by Serhiy Storchaka in :gh:`109218`.)

* :term:`Soft deprecate <soft deprecated>` :func:`os.popen` and
* :mod:`os`:
:term:`Soft deprecate <soft deprecated>` :func:`os.popen` and
:func:`os.spawn* <os.spawnl>` functions. They should no longer be used to
write new code. The :mod:`subprocess` module is recommended instead.
(Contributed by Victor Stinner in :gh:`120743`.)

* Deprecate :meth:`symtable.Class.get_methods` due to the lack of interest.
* :mod:`symtable`:
Deprecate :meth:`symtable.Class.get_methods` due to the lack of interest.
(Contributed by Bénédikt Tran in :gh:`119698`.)

.. Add deprecations above alphabetically, not here at the end.
Expand Down Expand Up @@ -265,7 +266,6 @@ asyncio

(Contributed by Kumar Aditya in :gh:`120804`.)


collections.abc
---------------

Expand Down
Loading
0