处理KeyboardInterrupt后如何避免^ C被打印

时间:2011-10-01 02:06:41

标签: python command-line command-line-interface

今天早上我决定在服务器程序中处理键盘中断并正常退出。我知道该怎么做,但是我的挑剔的自我并没有找到优雅的^C仍然被打印出来。如何避免^C打印?

import sys
from time import sleep
try:
  sleep(5)
except KeyboardInterrupt, ke:
  sys.exit(0)

按Ctrl + C退出上述程序,然后看^C打印。我可以使用一些sys.stdoutsys.stdin魔法吗?

4 个答案:

答案 0 :(得分:7)

这是你的shell,python与它无关。

如果您将以下行放入~/.inputrc,则会抑制该行为:

set echo-control-characters off

当然,我假设您正在使用bash,但可能并非如此。

答案 1 :(得分:2)

try:
    while True:
        pass
except KeyboardInterrupt:
    print "\r  "

答案 2 :(得分:0)

这将成功,至少在Linux中

#! /usr/bin/env python
import sys
import termios
import copy
from time import sleep

fd = sys.stdin.fileno()
old = termios.tcgetattr(fd)
new = copy.deepcopy(old)
new[3] = new[3] & ~termios.ECHO

try:
  termios.tcsetattr(fd, termios.TCSADRAIN, new)
  sleep(5)
except KeyboardInterrupt, ke:
  pass
finally:
  termios.tcsetattr(fd, termios.TCSADRAIN, old)
  sys.exit(0)

答案 3 :(得分:0)

我不知道这是否是执行此操作的最佳方法,但是我通过打印两个\b(退格转义序列)然后再打印一个空格或一系列字符来解决此问题。这可能很好

if __name__ == "__main__":
    try:
        # Your main code goes here
    except KeyboardInterrupt:
        print("\b\bProgram Ended")