8000
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 0af61fe commit a247dd3Copy full SHA for a247dd3
Doc/whatsnew/3.14.rst
@@ -2213,6 +2213,12 @@ Others
2213
integer must implement either :meth:`~object.__int__` or
2214
:meth:`~object.__index__`. (Contributed by Mark Dickinson in :gh:`119743`.)
2215
2216
+* The default :term:`interactive` shell now supports import autocompletion.
2217
+ This means that typing ``import foo`` and pressing ``<tab>`` will suggest
2218
+ modules starting with ``foo``. Similarly, typing ``from foo import b`` will
2219
+ suggest submodules of ``foo`` starting with ``b``. Note that autocompletion
2220
+ of module attributes is not currently supported.
2221
+ (Contributed by Tomas Roun in :gh:`69605`.)
2222
2223
CPython Bytecode Changes
2224
========================
0 commit comments