https://github.com/python/cpython/commit/a247dd300ea0c839154e2e38dbc0fdc9fdff673f commit: a247dd300ea0c839154e2e38dbc0fdc9fdff673f branch: main author: Tomas R. <tomas.ro...@gmail.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-05-04T14:22:42+03:00 summary:
gh-69605: Add PyREPL import autocomplete feature to 'What's New' (#133358) files: M Doc/whatsnew/3.14.rst diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 81581b30d2194b..4b5515900cad41 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -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 ======================== _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com