Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
Move new REPL autocomplete from 'Removed>Others' to 'Other language c…
…hanges'
  • Loading branch information
hugovk committed May 5, 2025
commit 6ebcb11ae91fcb51bcca11c0813b9032eb175dcf
13 changes: 7 additions & 6 deletions Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,13 @@ in the :envvar:`PYTHONSTARTUP` script.
Other language changes
======================

* The default :term:`interactive` shell now supports import autocompletion.
This means that typing ``import foo`` and pressing ``<tab>`` will suggest
modules starting with ``foo``. Similarly, typing ``from foo import b`` will
suggest submodules of ``foo`` starting with ``b``. Note that autocompletion
of module attributes is not currently supported.
(Contributed by Tomas Roun in :gh:`69605`.)

* The :func:`map` built-in now has an optional keyword-only *strict* flag
like :func:`zip` to check that all the iterables are of equal length.
(Contributed by Wannes Boeykens in :gh:`119793`.)
Expand Down Expand Up @@ -2256,12 +2263,6 @@ Others
integer must implement either :meth:`~object.__int__` or
:meth:`~object.__index__`. (Contributed by Mark Dickinson in :gh:`119743`.)

* The default :term:`interactive` shell now supports import autocompletion.
This means that typing ``import foo`` and pressing ``<tab>`` will suggest
modules starting with ``foo``. Similarly, typing ``from foo import b`` will
suggest submodules of ``foo`` starting with ``b``. Note that autocompletion
of module attributes is not currently supported.
(Contributed by Tomas Roun in :gh:`69605`.)

CPython bytecode changes
========================
Expand Down