Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Metaclasses

Python supports metaclasses, i.e., classes that control the creation of other classes.

Although this feature should not be overused, it can be useful in some circumstances.

See the following article for a discussion.

What is it?

  1. metaclasses.ipynb: Jupyter notebook illustrating using a metaclass to verify the correct implementation of a mix-in.