7

下面的代码应该打印同样的东西 3 次。为什么不呢?

from PySide.QtCore import QObject


class A(QObject):
    instance = 1

    @classmethod
    def test(cls):
        cls.instance  # Remove this line and it prints the right thing
        cls.instance = cls()
        print(cls.__dict__['instance'])
        print(cls.instance)
        print(type.__getattribute__(cls, 'instance'))

A.test()

预期结果:

<__main__.A object at 0x1310c20>
<__main__.A object at 0x1310c20>
<__main__.A object at 0x1310c20>

实际结果:

<__main__.A object at 0x2242878>
1
1

QObject 背后的元类甚至没有覆盖getattribute,所以我怎么可能没有用“cls.instance”取回 A 实例?

更奇怪的是,在分配它之前不访问该属性(参见注释的代码行)使其工作正常。

我可以复制如下(使用 PySide 1.1.0):

  • Windows 7 64 位,Python 2.7.1 32 位:有效
  • Windows 7 64 位,Python 2.7.3 32 位:有效
  • Windows 7 64 位、Python 3.2.3 32 位:失败
  • Ubuntu 11.10 64 位,Python 2.7.2+:有效
  • Ubuntu 11.10 64 位,Python 3.2.2:失败

更新:我设法在 Ubuntu 上的 Python 3.2.2 上编译 PySide 1.1.1,但它并没有解决问题。

4

1 回答 1

1

我可以在 Python 3.2.3 / PySide 1.1.0、Ubuntu 12.04 上确认这一点。在同一安装上与 PyQt4 一起使用。

这无疑是 PySide 中的一个错误。如果您还没有这样做,您应该提交错误报告。

如果我只是稍微改变一下这个例子,这个例子甚至会出现段错误:

from PySide.QtCore import *

class A(QObject):
    instance = []

    @classmethod
    def test(cls):
        print(cls.instance)
        cls.instance = cls()
        print(cls.__dict__['instance'])
        print("still ok")
        print(cls.instance)
        print("you won't see me")
        print(type.__getattribute__(cls, 'instance'))

A.test()
于 2012-05-01T20:57:30.680 回答