mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
9 lines
259 B
Python
9 lines
259 B
Python
class B: pass
|
|
|
|
class A(B):
|
|
<warning descr="Old-style class contains __slots__ definition">__<caret>slots__</warning> = ""
|
|
|
|
def <warning descr="Old-style class contains __getattribute__ definition">__getattribute__</warning>(self, item):
|
|
pass
|
|
|