下面的代码:
from tornado.wsgi import WSGIContainer
from tornado.httpserver import HTTPServer
from tornado.ioloop import IOLoop
def start(app, port=8080):
http_server = HTTPServer(WSGIContainer(app))
http_server.listen(port)
try:
IOLoop.instance().start()
except KeyboardInterrupt:
print "stop"
IOLoop.instance().stop()
我想在 Windows 中使用CTRL+C或CTRL+停止龙卷风服务器PauseBreak,但Ctrl+C不会在 CMD 中停止它。
Ctrl+PauseBreak确实停止 CMD 并终止 python.exe,但不显示“停止”。
如何在windows中输入KeyboardInterrupt?