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: textpad from curses package isn't handling backspace key
Type: behavior Stage: patch review
Components: Library (Lib) Versions: Python 3.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: SBC King, ZackerySpytz, bacher09
Priority: normal Keywords: patch

Created on 2017-11-18 14:20 by bacher09, last changed 2022-04-11 14:58 by admin.

Files
File name Uploaded Description Edit
textpad.patch bacher09, 2017-11-18 14:20 review
Pull Requests
URL Status Linked Edit
PR 23466 open ZackerySpytz, 2020-11-22 18:17
Messages (2)
msg306481 - (view) Author: Slava Bacherikov (bacher09) * Date: 2017-11-18 14:20
textpad isn't handling backspace key on my system and seems on others too. When I press backspace key, terminal sends `ascii.DEL` (127) and it isn't handled by textpad.

I've attached patch that fixes this, should I also create PR for this or patch is enough ?
msg371805 - (view) Author: SBC King (SBC King) * Date: 2020-06-18 11:15
I would create a pull request
History
Date User Action Args
2022-04-11 14:58:54adminsetgithub: 76249
2020-11-22 18:17:55ZackerySpytzsetnosy: + ZackerySpytz

pull_requests: + pull_request22356
stage: patch review
2020-06-18 11:15:45SBC Kingsetnosy: + SBC King
messages: + msg371805
2017-11-18 14:20:36bacher09create