在 TextWrangler 中调试 Python 显示终端而不是调试器
当我在 TextWrangler 中使用 #! 调试 python 代码时|在调试器中运行选项代码在终端中运行,而不是在 python 调试器中运行。如何配置 TextWrangler 以使用 python 调试器?
顺便说一句 - 使用在 Mac 上运行的 TextWrangler v3.5 (2880),python 文件具有 .py 扩展名,并且被 TextWrangler 视为 python 文件;语法高亮是正确的。
谢谢, 杰米
When I am debugging python code in TextWrangler using the #! | Run in Debugger option the code is run in a terminal not in the python debugger. How do I configure TextWrangler to use the python debugger?
BTW - Using TextWrangler v3.5 (2880) running on a Mac, python file has .py extension and is seen by TextWrangler as a python file; syntax highlighting is correct.
Thanks,
Jamie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您单击 #! 时 TextWranger 打开的终端| Run in Debugger是TextWrangler提供的调试环境。如果您以前使用过的话,它是一个类似于 gdb(来自 GNU 工具链)的命令行实用程序。当终端打开时,如果您看到此提示:(pdb),则表示您处于调试器中。在提示符处输入 help 将获得可用的命令列表。
The terminal that TextWranger opens up when you click on #! | Run in Debugger is the debug environment provided by TextWrangler. It's a command-line utility similar to gdb (from the GNU toolchain) if you've ever used that before. When the terminal opens, if you see this prompt: (pdb) then that means you're in the debugger. Typing help at the prompt will get you the available list of commands.