Skip to content

3.0.24

Compare
Choose a tag to compare
@jonathanslenders jonathanslenders released this 13 Dec 09:49
· 22 commits to master since this release

Fixes:

  • Don't show "Impossible to read config file" warnings when no config file was passed to run_config().
  • IPython integration fixes:
    • Fix top-level await in IPython.
    • Fix IPython DeprecationWarning.
  • Output printing fixes:
    • Paginate exceptions if pagination is enabled.
    • Handle big outputs without running out of memory.
  • Asyncio REPL improvements:
    • From now on, passing --asyncio is required to activate the asyncio-REPL. This will ensure that an event loop is created at the start in which we can run top-level await statements.
    • Use get_running_loop() instead of get_event_loop().
    • Better handling of SystemExit and control-c in the async REPL.