This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: tty unblocking setraw and save-restore features
Type: behavior Stage: patch review
Components: Library (Lib) Versions: Python 3.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Steven Lu, python-dev
Priority: normal Keywords: patch

Created on 2020-04-08 17:44 by Steven Lu, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 19440 closed python-dev, 2020-04-08 17:47
Messages (1)
msg365996 - (view) Author: Steven Lu (Steven Lu) Date: 2020-04-08 17:44
I hope to be able to set blocking or unblocking in `tty.setraw` so that I won't need to mess with `termios` in every of my python codes using an unblocking raw mode. I will personally find it useful in the situation where I want a mainloop that continues running even if I'm not typing into my terminal.

I also feel that a save-restore feature will make mode management a lot easier.
History
Date User Action Args
2022-04-11 14:59:29adminsetgithub: 84410
2020-04-08 17:47:31python-devsetkeywords: + patch
nosy: + python-dev

pull_requests: + pull_request18794
stage: patch review
2020-04-08 17:44:06Steven Lucreate