Python Stacktrace:calledfuncs 字典具有奇怪的语法:“Class”>“.method”

发布于 2024-12-20 02:37:42 字数 450 浏览 1 评论 0 原文

当我查看使用以下命令生成的字典时:

import trace
tracer = trace.Trace(countfuncs=True)
tracer.runfunc(callableObj, *args, **kwargs)
print tracer.results().calledfuncs

在一台机器上(python 1.3),我得到了打印字典键的奇怪语法;一个键看起来像:

('/path/to/file.py', 'module', "SomeClass'>.some_method")

我想知道的是字符: '>;

在另一台装有 python 1.3.1 的机器上,第三个元组条目看起来像预期的那样,没有 '>;少量。

您是否知道它从何而来以及为什么它出现在一台机器上而不是另一台机器上?

When I look at the dictionary generated with:

import trace
tracer = trace.Trace(countfuncs=True)
tracer.runfunc(callableObj, *args, **kwargs)
print tracer.results().calledfuncs

on one machine (python 1.3) I get a strange syntax for the keys of the printed dictionary; a key looks like:

('/path/to/file.py', 'module', "SomeClass'>.some_method")

The thing I wonder about are the characters: '>

On another machine with python 1.3.1 the third tuple-entry looks like expected, without the '> bit.

Have you got an idea where this comes from and why its there on one machine and not on another?

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

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

发布评论

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

评论(1

枕花眠 2024-12-27 02:37:42

你确定你说的不是Python 2.3吗?

在trace.py中,类名的计算公式如下:

    ...
        clsname = str(classes[0])
    ...
    if clsname is not None:
        # final hack - module name shows up in str(cls), but we've already
        # computed module name, so remove it
        clsname = clsname.split(".")[1:]
        clsname = ".".join(clsname)
        funcname = "%s.%s" % (clsname, funcname)

通常str(someclass)会给你类似module.klass的东西,所以在点处分割会给你一个干净的类名称。由于某种原因,您正在查看的系统上的类给出了一个以您所看到的字符串结尾的 repr,因此可能类似于

我会尝试在该机器上编辑 trace.py 以(暂时)不拆分 clsname 变量,然后您可能能够弄清楚它真正应该说什么。

Are you sure you didn't mean Python 2.3?

In trace.py, the classname is calculated from:

    ...
        clsname = str(classes[0])
    ...
    if clsname is not None:
        # final hack - module name shows up in str(cls), but we've already
        # computed module name, so remove it
        clsname = clsname.split(".")[1:]
        clsname = ".".join(clsname)
        funcname = "%s.%s" % (clsname, funcname)

Usually str(someclass) gives you something like module.klass so splitting at the dot gives you a clean name for the class. For some reason the class on the system you are looking at is giving a repr that ends with the string you are seeing, so perhaps it was something like <proxy for 'module.klass'>.

I would try editing trace.py on that machine to (temporarily) not split the clsname variable and then you might be able to figure out what it should really say.

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