Closed as not planned
Description
Bug report
Bug description:
Using a self parameter other than "self", static_attributes is empty (in 3.13.0rc2):
>>> class C:
... def foo(self, a):
... self.a = a
...
>>> C.__static_attributes__
('a',)
>>> class D:
... def foo(me, a):
... me.a = a
...
>>> D.__static_attributes__
()
CPython versions tested on:
3.13
Operating systems tested on:
Linux
Metadata
Metadata
Assignees
Labels
No labels