使用 PyDev 自定义调试打印格式
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.