mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
gh-69605: Add PyREPL import autocomplete feature to 'What's New' (#133358)
This commit is contained in:
parent
0af61fe2f4
commit
a247dd300e
1 changed files with 6 additions and 0 deletions
|
@ -2213,6 +2213,12 @@ Others
|
||||||
integer must implement either :meth:`~object.__int__` or
|
integer must implement either :meth:`~object.__int__` or
|
||||||
:meth:`~object.__index__`. (Contributed by Mark Dickinson in :gh:`119743`.)
|
: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
|
CPython Bytecode Changes
|
||||||
========================
|
========================
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue