是否可以使用 Visual Studio 代码 Python 扩展调试 Iron Python?
Is it possible to debug Iron Python with the Visual Studio Code Python Extension?
是否可以使用 Visual Studio 代码 Python 扩展调试 Iron Python 脚本?
我已经设置了 Iron Python 2.7.11 解释器并尝试开始调试 Iron python 文档中的一个小示例脚本。
import re
re.findall(r'\bf[a-z]*', 'which foot or hand fell fastest')
re.sub(r'(\b[a-z]+) ', r'', 'cat in the the hat')
但是没有任何反应,没有命中断点。
调试功能由Python extension
提供。
而 Python extension
取决于:
all actively supported versions of the language: >=3.6
Iron Python 2.7.11 Interpreter
看起来不支持。
是否可以使用 Visual Studio 代码 Python 扩展调试 Iron Python 脚本?
我已经设置了 Iron Python 2.7.11 解释器并尝试开始调试 Iron python 文档中的一个小示例脚本。
import re
re.findall(r'\bf[a-z]*', 'which foot or hand fell fastest')
re.sub(r'(\b[a-z]+) ', r'', 'cat in the the hat')
但是没有任何反应,没有命中断点。
调试功能由Python extension
提供。
而 Python extension
取决于:
all actively supported versions of the language: >=3.6
Iron Python 2.7.11 Interpreter
看起来不支持。