14
0

Accepting request 645953 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/645953
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-prompt_toolkit?expand=0&rev=21
This commit is contained in:
Tomáš Chvátal
2018-11-02 08:17:24 +00:00
committed by Git OBS Bridge
parent 724a6b63af
commit 58b18493fa
4 changed files with 29 additions and 4 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Thu Nov 1 22:41:46 UTC 2018 - Arun Persaud <arun@gmx.de>
- update to version 2.0.7:
* Bug fixes:
+ Fixed assertion in PromptSession: the style_transformation check
was wrong.
+ Removed 'default' attribute in PromptSession. Only ask for it in
the `prompt()` method. This fixes the issue that passing
`default` once, will store it for all consequent calls in the
`PromptSession`.
+ Ensure that `__pt_formatted_text__` always returns a
`FormattedText` instance. This fixes an issue with
`print_formatted_text`.
* New features:
+ Improved handling of situations where stdin or stdout are not a
terminal. (Print warning instead of failing with an assertion.)
+ Added `print_container` utility.
+ Sound bell when attempting to edit read-only buffer.
+ Handle page-down and page-up keys in RadioList.
+ Accept any `collections.abc.Sequence` for HSplit/VSplit children
(instead of lists only).
+ Improved Vi key bindings: return to navigation mode when Insert
is pressed.
-------------------------------------------------------------------
Sat Oct 13 16:03:06 UTC 2018 - Arun Persaud <arun@gmx.de>