python-prompt-toolkit v3.0.32 Release Notes
Release Date: 2022-11-03 // over 2 years ago-
๐ Bug fixes:
- 0๏ธโฃ Use
DummyInput
by default increate_input()
ifsys.stdin
does not have a valid file descriptor. This fixes errors whensys.stdin
is patched in certain situations. - ๐ Fix control-c key binding for
ProgressBar
when the progress bar was not created from the main thread. The current code would try to kill the main thread when control-c was pressed.
๐ New features:
- Accept a
cancel_callback
inProgressBar
to specify the cancellation behavior for whencontrol-c
is pressed. - ๐ Small performance improvement in the renderer.
- 0๏ธโฃ Use
Previous changes from v3.0.31
-
๐ New features:
- Pass through
name
property inTextArea
widget toBuffer
. - Added a
enable_cpr
parameter toVt100_Output
,TelnetServer
andPromptToolkitSSHServer
, to completely disable CPR support instead of automatically detecting it.
- Pass through