首页 > 解决方案 > Brython 中的 super().__str__() 是否应该返回不同的东西?

问题描述

我使用 Brython 和str方法继承遇到了一个奇怪的情况。这是我使用Brython 控制台的测试:

>>> class A(object):
...     def __str__(self):
...         return "A __str__ output."
... 
>>> class B(A):
...     def __str__(self):
...         return super().__str__() + " (from B)"
... 
>>> x = A()
>>> x
<__main__.A object>
>>> y = B()
>>> y
<__main__.B object>
>>> str(y)
"<super: <class 'B'>, <B object>> (from B)"

我期待最后一行返回:

"A __str__ output. (from B)"

我在这里做错了吗?

标签: pythonbrython

解决方案


相同的代码在 CPython 中运行良好,因此它可能是 Brython 错误。

Python 3.7.6 (default, Dec 30 2019, 19:38:26)
[Clang 11.0.0 (clang-1100.0.33.16)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> class A(object):
...     def __str__(self):
...         return "A __str__ output."
...
>>> class B(A):
...     def __str__(self):
...         return super().__str__() + " (from B)"
...
>>> x = A()
>>> x
<__main__.A object at 0x1048de590>
>>> y = B()
>>> y
<__main__.B object at 0x1048de790>
>>> str(y)
'A __str__ output. (from B)'
>>>

推荐阅读