<div dir="ltr"><dt id="term-metaclass" style="font-weight:bold;font-size:1.1em;font-family:"Lucida Grande",Arial,sans-serif">metaclass</dt><dd style="margin-top:3px;margin-bottom:10px;margin-left:30px;text-align:justify;line-height:20.8px;font-family:"Lucida Grande",Arial,sans-serif;font-size:16px"><p class="" style="line-height:22.4px;margin-top:0px!important">The class of a class. Class definitions create a class name, a class dictionary, and a list of base classes. The metaclass is responsible for taking those three arguments and creating the class. Most object oriented programming languages provide a default implementation. What makes Python special is that it is possible to create custom metaclasses. Most users never need this tool, but when the need arises, metaclasses can provide powerful, elegant solutions. They have been used for logging attribute access, adding thread-safety, tracking object creation, implementing singletons, and many other tasks.</p><p class="" style="margin-top:0px;line-height:22.4px">More information can be found inĀ <a class="" href="https://docs.python.org/3.6/reference/datamodel.html#metaclasses" style="color:rgb(99,99,187);text-decoration:none">Customizing class creation</a>.</p></dd></div>