如何自动关闭PTVS中的调试输出窗口?


2

我正在使用MSVS 2013 Express上的PTVS软件包来开发和运行我的Python脚本。我正在使用Startbutton(F5)来运行脚本。该脚本使用TCP / IP堆栈与在后台运行的外部程序进行通信。我脚本中的最后几行是:

del SWLink
sys.exit()

在哪里SWLink定义了comm对象。

在运行脚本时,会打开一个终端(命令)窗口,其中回显一些消息,包括我的print()消息。当脚本结束时,终端等待按键关闭并将控制权返回给IDE。

我该如何完成脚本以便终端自动关闭?

Answers:


2

要自动关闭“调试输出”窗口,请打开:

DEBUG- > Options and Settings...- > Python Tools- >Debugging

并取消选中Wait for input when process exits normallyWait for input when process exits abnormally复选框。

更新:我不知道为什么,但是这只能有时 ??!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.