14
0
forked from pool/python-urwid

- udpate to 2.1.1:

* Add TrioEventLoop.run_async(), removed nursery constructor arg (#392) (by
    Tamás Nepusz)
  * Add wrap_around kwarg to SimpleListWalkers (by Krzysztof Królczyk)
  * Change documentation on Terminal (by James Johnson)
  * Remove debug documentation change test (by James Johnson)
  * Remove support for py34 (by Andrey Semakin)
  * Remove invalid escape sequence (by Andrey Lebedev)
  * Fix GridFlow keypress handling when v_sep is 0 (by Aurelien Grenotton)
  * Fix Terminal in ListBox (#382) (by James Johnson)
  * Fix Crash on `fg`, SIGCONT (after Ctrl-Z, SIGSTOP, SIGTSTP) (by goncalopp)
  * Fix 256-color mode on some terminals. Addresses #404. (by Tony Cebzanov)
  * vterm: reduce __init__ boilerplate (by max ulidtko)
  * vterm: errno 5 is not EOF. (by max ulidtko)
  * Terminal: use UTF-8 by default. (by max ulidtko)
  * Instance of Terminal has no __super attr -- thanks pylint! (by max ulidtko)
  * Do not call wait_readable with a closed fd in TrioEventLoop (by Michael
    Hudson-Doyle)
  * Make options a static method where applicable (by Philip Matura)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=40
This commit is contained in:
2020-09-16 21:29:51 +00:00
committed by Git OBS Bridge
parent 923789a4c4
commit 9c7efd4013
4 changed files with 27 additions and 4 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Wed Sep 16 21:28:40 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- udpate to 2.1.1:
* Add TrioEventLoop.run_async(), removed nursery constructor arg (#392) (by
Tamás Nepusz)
* Add wrap_around kwarg to SimpleListWalkers (by Krzysztof Królczyk)
* Change documentation on Terminal (by James Johnson)
* Remove debug documentation change test (by James Johnson)
* Remove support for py34 (by Andrey Semakin)
* Remove invalid escape sequence (by Andrey Lebedev)
* Fix GridFlow keypress handling when v_sep is 0 (by Aurelien Grenotton)
* Fix Terminal in ListBox (#382) (by James Johnson)
* Fix Crash on `fg`, SIGCONT (after Ctrl-Z, SIGSTOP, SIGTSTP) (by goncalopp)
* Fix 256-color mode on some terminals. Addresses #404. (by Tony Cebzanov)
* vterm: reduce __init__ boilerplate (by max ulidtko)
* vterm: errno 5 is not EOF. (by max ulidtko)
* Terminal: use UTF-8 by default. (by max ulidtko)
* Instance of Terminal has no __super attr -- thanks pylint! (by max ulidtko)
* Do not call wait_readable with a closed fd in TrioEventLoop (by Michael
Hudson-Doyle)
* Make options a static method where applicable (by Philip Matura)
-------------------------------------------------------------------
Fri Feb 7 15:15:02 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>