We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e256b9 commit 1d8ca76Copy full SHA for 1d8ca76
Doc/whatsnew/3.14.rst
@@ -2106,6 +2106,12 @@ Others
2106
integer must implement either :meth:`~object.__int__` or
2107
:meth:`~object.__index__`. (Contributed by Mark Dickinson in :gh:`119743`.)
2108
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`.)
2115
2116
CPython Bytecode Changes
2117
========================
0 commit comments