mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 13:43:29 +07:00
5 lines
75 B
Python
5 lines
75 B
Python
class Base(object):
|
|
foo = 1
|
|
|
|
class Derived(Base):
|
|
__slots__ = 'foo' |