0

Git Bash 中的 Python 脚本在直接运行脚本时会忽略键盘中断 Control C。

这是一个简单的测试代码,称为 test_sleep_interrupt.py。它睡10次,每次1秒。我将在两者之间键入 Control C。

#!/usr/bin/env python
import time
for i in range(0, 10):
    print(f"sleep #{i}")
    time.sleep(1)

当我直接运行脚本时,控制 C 被忽略

$ ./test_sleep_interrupt.py
sleep #0
sleep #1
sleep #2
(hitting Control-C many times, no effect)
sleep #3
sleep #4
sleep #5
sleep #6
sleep #7
sleep #8
sleep #9

当我通过 python 运行它时,Control-C 立即工作

$ python ./test_sleep_interrupt.py
sleep #0
sleep #1
(typed Control-C)
Traceback (most recent call last):
  File "./test_sleep_interrupt.py", line 5, in <module>
    time.sleep(1)
KeyboardInterrupt

这里会发生什么?直接调用脚本时是否有使 Control-C 工作的修复程序?

我使用的是 Windows 10,Python 3.7.3,Git Bash 是 mintty-2.9.6

4

1 回答 1

1

根据@ConnorLow 的建议,我将我的 Git for Windows 升级到了最新版本 2.28.0,其中包括 Git Bash mintty 3.2.0。这解决了报告的问题。

于 2020-08-06T17:07:29.653 回答