Дескриптороы, слоты и метакласс

https://habr.com/post/122082/

https://docs.python.org/3/reference/datamodel.html?highlight=descriptor#object.__slots__

https://habr.com/post/145835/

MyShinyClass = type('MyShinyClass', (), {})

Foo = type('Foo', (), {'bar':True})

FooChild = type('FooChild', (Foo,), {})

FooChild = type('FooChild', (Foo,), {'echo_bar': echo_bar})

metaclass ?

LecturesCMC/PythonIntro2018/12_SomeOther (последним исправлял пользователь FrBrGeorge 2018-12-07 16:52:10)