使用 PyDev 自定义调试打印格式

发布于 2024-10-10 16:01:48 字数 106 浏览 4 评论 0原文

使用 PyDev 进行调试时是否可以将整数(以及作为字典、列表和元组等的一部分的整数)视为十六进制值?

更广泛地说,是否可以使任何给定的数据类型在变量显示选项卡中以您想要的方式显示?

Is it possible to see ints (and ints that are parts of dicts, lists, and tuples, etc.) as hex values when debugging with PyDev?

More broadly, is it possible to make any given data type show up the way you want in the variable display tab?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

胡渣熟男 2024-10-17 16:01:48

PyDev 调试器仅使用 repr() 函数来显示值。因此,如果覆盖 __repr__() 函数,则可以更改值的打印方式。

我认为没有任何其他选项可以改变变量的显示方式,尽管您可能(不确定)能够覆盖 repr() 函数本身。

The PyDev Debugger simply uses the repr() function to show the values. So if overwrite the __repr__() function than you can change how the values are printed.

I don't think there are any other options of changing the way your variables show, although you might (not sure about that) be able to get away with overwriting the repr() function itself.

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