5

我有 2 个非常相似的课程:A 和 B:

import attr
@attr.s
class A(object):
   x = attr.ib()
   y = attr.ib()

@attr.s
class B(object):
   x = attr.ib()
   z = attr.ib()
   y = attr.ib(default=None)

如您所见,它们共享 2 个属性(x 和 y),但在 A 类中,y 属性是位置属性,而在 B 中是可选的。

我想将这些类分组到一个超类中,但是如果我尝试让 B 类从 AI 类继承,则会出现以下错误:

SyntaxError: duplicate argument 'y' in function definition

添加了我用来引发错误的代码:

@attr.s
class A(object):
    x = attr.ib()
    y = attr.ib()


@attr.s
class B(A):
    z = attr.ib()
    y = attr.ib(default=None)

所以我的问题是:是否可以使用 attrs 模块将这些类分组到一个超类中?如果不是,您是否建议我像“旧时尚”那样将它们分组(自己实现 init 方法)?

非常感谢!

4

1 回答 1

7

我不完全清楚你期望什么行为?如果你想覆盖 A's y,我有个好消息,因为这应该适用于昨天刚刚发布的 attrs 17.3:

>>> @attr.s
... class A(object):
...     x = attr.ib()
...     y = attr.ib()
...
...
... @attr.s
... class B(A):
...     z = attr.ib()
...     y = attr.ib(default=None)

>>> B(1, 2)
B(x=1, z=2, y=None)
于 2017-11-10T15:57:21.733 回答