gh-69605: Add PyREPL import autocomplete feature to 'What's New' (#133358)

This commit is contained in:
Tomas R. 2025-05-04 13:22:42 +02:00 committed by GitHub
parent 0af61fe2f4
commit a247dd300e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2213,6 +2213,12 @@ 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
========================