以下のコード:
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+を使ってトルネードサーバーを止めたいのですが、CMDでは+で止まりません。PauseBreakCtrlC
Ctrl+ PauseBreakCMD を停止して python.exe を終了しますが、「停止」は表示されません。
WindowsでKeyboardInterruptを入力するには?