From 3e00fc23117a6fbb91d5ca09602f8006c3f2365a Mon Sep 17 00:00:00 2001 From: Julian Teu Date: Tue, 10 Apr 2018 18:07:28 +0200 Subject: Cleanup --- Scripts/getch.py | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100755 Scripts/getch.py (limited to 'Scripts/getch.py') diff --git a/Scripts/getch.py b/Scripts/getch.py deleted file mode 100755 index be6203f..0000000 --- a/Scripts/getch.py +++ /dev/null @@ -1,38 +0,0 @@ -class _Getch: - """Gets a single character from standard input. Does not echo to the -screen.""" - def __init__(self): - try: - self.impl = _GetchWindows() - except ImportError: - self.impl = _GetchUnix() - - def __call__(self): return self.impl() - - -class _GetchUnix: - def __init__(self): - import tty, sys - - def __call__(self): - import sys, tty, termios - fd = sys.stdin.fileno() - old_settings = termios.tcgetattr(fd) - try: - tty.setraw(sys.stdin.fileno()) - ch = sys.stdin.read(1) - finally: - termios.tcsetattr(fd, termios.TCSADRAIN, old_settings) - return ch - - -class _GetchWindows: - def __init__(self): - import msvcrt - - def __call__(self): - import msvcrt - return msvcrt.getch() - - -getch = _Getch() -- cgit v1.2.3