本文介绍了如何防止用户通过CTRL + Z停止脚本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想通过从我的python命令行解释器脚本中按 + 来防止用户返回到shell提示.我该怎么办?
I want to prevent the user from going back to the shell prompt by pressing + from my python command line interpreter script. How can I do that?
推荐答案
您可以为SIGTSTP编写信号处理程序,该信号处理程序由 + 触发.这是一个示例:
You could write a signal handler for SIGTSTP, which is triggered by + . Here is an example:
import signal
def handler(signum, frame):
print 'Ctrl+Z pressed, but ignored'
signal.signal(signal.SIGTSTP, handler)
while True:
pass
这篇关于如何防止用户通过CTRL + Z停止脚本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!