diff --git a/Lib/curses/ascii.py b/Lib/curses/ascii.py index 08b5b79f5fd..800fd8b4b71 100644 --- a/Lib/curses/ascii.py +++ b/Lib/curses/ascii.py @@ -87,13 +87,11 @@ def alt(c): return _ctoi(c) | 0x80 def unctrl(c): - if isprint(c): - return chr(_ctoi(c)) bits = _ctoi(c) if bits == 0x7f: rep = "^?" - elif bits & 0x20: - rep = chr((bits & 0x7f) | 0x20) + elif isprint(bits & 0x7f): + rep = chr(bits & 0x7f) else: rep = "^" + chr(((bits & 0x7f) | 0x20) + 0x20) if bits & 0x80: