mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
6 lines
184 B
Python
6 lines
184 B
Python
class C(object):
|
|
__slots__ = ['__local', '__name__', '__dict__']
|
|
|
|
a = C()
|
|
print(a.<warning descr="Unresolved attribute reference 'bar' for class 'C'">bar</warning>)
|
|
a.foo = 1 #pass |