【发布时间】:2021-08-30 15:55:43
【问题描述】:
是否可以使用 Visual Studio Code 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]+) \1', r'\1', 'cat in the the hat')
但是什么也没发生,断点没有命中。
【问题讨论】:
标签: python python-2.7 visual-studio-code ironpython