Skip to content

Commit 1d8ca76

Browse files
committed
Add PyREPL import autocomplete to 'Whats New'
1 parent 3e256b9 commit 1d8ca76

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Doc/whatsnew/3.14.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2106,6 +2106,12 @@ Others
21062106
integer must implement either :meth:`~object.__int__` or
21072107
:meth:`~object.__index__`. (Contributed by Mark Dickinson in :gh:`119743`.)
21082108

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

21102116
CPython Bytecode Changes
21112117
========================

0 commit comments

Comments
 (0)