Since cpython 3.8, there is `python -m asyncio` repl, which directly support `await`-family statements like: ``` python >>> await asyncpg.connect(...) ``` But, it lacks of bpython features. Will this mode be implemented in bpython?
Since cpython 3.8, there is
python -m asynciorepl, which directly supportawait-family statements like:But, it lacks of bpython features. Will this mode be implemented in bpython?