https://github.com/python/cpython/commit/a29f5218e5996b9a357da33ec6bdb7ff9620ef8b commit: a29f5218e5996b9a357da33ec6bdb7ff9620ef8b branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 <[email protected]> date: 2025-11-06T05:45:18Z summary:
[3.13] gh-140569: recommend the new REPL in the asyncio REPL docs (GH-140570) (#141116) gh-140569: recommend the new REPL in the asyncio REPL docs (GH-140570) (cherry picked from commit 8822166200ddb4a7635337b97b626e658a443cef) Co-authored-by: Bartosz Sławecki <[email protected]> Co-authored-by: Hugo van Kemenade <[email protected]> files: M Doc/library/asyncio.rst diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index a144762f206f88..39298babea7707 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -79,6 +79,10 @@ You can experiment with an ``asyncio`` concurrent context in the :term:`REPL`: >>> await asyncio.sleep(10, result='hello') 'hello' +This REPL provides limited compatibility with :envvar:`PYTHON_BASIC_REPL`. +It is recommended that the default REPL is used +for full functionality and the latest features. + .. audit-event:: cpython.run_stdin "" "" .. versionchanged:: 3.12.5 (also 3.11.10, 3.10.15, 3.9.20, and 3.8.20) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
