在 TextWrangler 中调试 Python 显示终端而不是调试器

发布于 2024-10-11 11:39:45 字数 244 浏览 7 评论 0原文

当我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黄昏下泛黄的笔记 2024-10-18 11:39:45

当您单击 #! 时 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文