実行すると、私はこのスクリプトをPythonの上向き矢印ですか?
import sys, os, termios, tty
home = os.path.expanduser("~")
history = []
if os.path.exists(home+"/.incro_repl_history"):
readhist = open(home+"/.incro_repl_history", "r+").readlines()
findex = 0
for j in readhist:
if j[-1] == "\n":
readhist[findex] = j[:-1]
else:
readhist[findex] = j
findex += 1
history = readhist
del readhist, findex
class _Getch:
def __call__(self):
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setraw(sys.stdin.fileno())
ch = sys.stdin.read(3)
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
return ch
while True:
try:
cur = raw_input("> ")
key = _Getch()
print key
if key == "\x1b[A":
print "\b" * 1000
print history[0]
history.append(cur)
except EOFError:
sys.stdout.write("^D\n")
history.append("^D")
except KeyboardInterrupt:
if not os.path.exists(home+"/.incro_repl_history"):
histfile = open(home+"/.incro_repl_history", "w+")
for i in history:
histfile.write(i+"\n")
else:
os.remove(home+"/.incro_repl_history")
histfile = open(home+"/.incro_repl_history", "w+")
for i in history:
histfile.write(i+"\n")
sys.exit("")
を持って、それは/home/bjskistad/.incro_repl_history
の内容のget、行を読み込み、newspace文字を削除し、その後、_Getch
クラス/関数を定義します。次に、スクリプトのメインループを実行します。 try
をcur
からraw_input()
に設定してください。次に、_Getch
クラスを定義して上向き矢印を検出しようとします。これは私が困っているところです。私は_Getch
クラスを使って上向きの矢印を感じることができません。現在のコードで上矢印をどのように感じることができますか?
このコードは古くなっています。 – baranskistad
入力コードは何ですか? – baranskistad
古代だが、Pythonで利用できる3.エスケープのためにchr(13)、chr(27)を試す... –