每当我在http://code.activestate.com/recipes/134892/处使用食谱时,我似乎无法使其正常工作。它总是抛出以下错误:
Traceback (most recent call last):
...
old_settings = termios.tcgetattr(fd)
termios.error: (22, 'Invalid argument)
我最好的想法是,因为我在Eclipse中运行它,所以termios
正在使用文件描述符。
答案 0 :(得分:9)
这适用于Ubuntu 8.04.1,Python 2.5.2,我没有这样的错误。也许你应该从命令行尝试它,eclipse可能正在使用它自己的stdin,如果我从Wing IDE运行它,我得到完全相同的错误,但是从命令行它运行得很好。 原因是IDE,例如Wing正在使用自己的类netserver.CDbgInputStream作为sys.stdin 所以sys.stdin.fileno为零,这就是为什么错误。 基本上IDE stdin不是tty(print sys.stdin.isatty()是假的)
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
getch = _GetchUnix()
print getch()
答案 1 :(得分:4)
将终端置于原始模式并不总是一个好主意。实际上它足以清除ICANON位。这是另一个具有超时支持的getch()版本:
import tty, sys, termios
import select
def setup_term(fd, when=termios.TCSAFLUSH):
mode = termios.tcgetattr(fd)
mode[tty.LFLAG] = mode[tty.LFLAG] & ~(termios.ECHO | termios.ICANON)
termios.tcsetattr(fd, when, mode)
def getch(timeout=None):
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
setup_term(fd)
try:
rw, wl, xl = select.select([fd], [], [], timeout)
except select.error:
return
if rw:
return sys.stdin.read(1)
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
if __name__ == "__main__":
print getch()