execution order of trait observers
- 主要语言
- Python
- 星标
- 653
- 派生
- 217
- 平均合并
- 2 天 21 小时
- 30 天内合并 PR
- 2
描述
its not clear to me in what order the trait observers get executed and why?
can anyone shed light on this?
```py
class Test(tr.HasTraits):
a = tr.Bool(default_value=True)
b = tr.Bool(default_value=True)
c = tr.Bool(default_value=True)
@tr.observe("a")
def _a(self, on_change):
print(f"a = {self.a}")
@tr.observe("b")
def _b(self, on_change):
print(f"b = {self.b}")
@tr.observe("c")
def _c(self, on_change):
print(f"c = {self.c}")
def __init__(self, **kwargs):
super().__init__(**kwargs)
t1 = Test(a=False, b=False, c=False)
print("---")
t2 = Test(c=False, b=False, a=False)
# b = False
# c = False
# a = False
# ---
# b = False
# c = False
# a = False
```
many thanks
贡献指南
调研方向
Start with the Test example and its tr.observe handlers, then inspect how trait initialization processes the keyword arguments and dispatches observers. Done means documenting the actual execution-order rule and why both argument orders produce the shown output.
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- documentation
- Issue 类型
- 文档
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 需要澄清
- 新手友好度
- 25/100