14
0

- update to 3.0.25:

* Fix handling of 'config file does not exist' when embedding
    ptpython.
  * Don't show "Impossible to read config file" warnings when no
    config file was passed to `run_config()`.
  * 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.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ptpython?expand=0&rev=23
This commit is contained in:
2023-12-27 13:54:00 +00:00
committed by Git OBS Bridge
parent 2a6acf5016
commit f28167367d
4 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Wed Dec 27 13:52:57 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.0.25:
* Fix handling of 'config file does not exist' when embedding
ptpython.
* Don't show "Impossible to read config file" warnings when no
config file was passed to `run_config()`.
* 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.
-------------------------------------------------------------------
Mon Dec 11 07:23:19 UTC 2023 - Dirk Müller <dmueller@suse.com>