Jeong, YunWon
Jeong, YunWon
The main report is fixed ``` >>>>> class Test: ..... __slots__ = "cost", "item" ..... def __init__(self): ..... self.cost = 10 ..... self.item = "icecream" ..... >>>>> t = Test()...
The special case is also fixed ``` >>>>> class A: ..... __slots__ = ('__dict__', 'a') ..... def __init__(self): ..... self.a = 1 ..... self.b = 2 ..... >>>>> A().__dict__ {'b':...
The weakref is not fixed yet
I was forgetting we had one in cron. Can we make report using codecov? https://about.codecov.io/language/rust/
#3649 made the first report: https://app.codecov.io/gh/RustPython/RustPython
I looked at it and I like it. If it doesn't increase build time that much (because now we can do it with stable compiler), adding it to PR CI...
@copilot fix clippy failures
Adding a CI target to openbsd in CI will be great. We have one for freebsd.
This is too ad-hoc. There must be the right way
@Copilot fix clippy warnings