+

Search Tips   |   Advanced Search

metaclass-boilerplate

Most Python files should include the following boilerplate at the top of the file, right after the comment header and from __future__ import:

Python 2 has 'new-style classes' and 'old-style classes' whereas Python 3 only has new-style classes. Adding the __metaclass__ = type boilerplate makes every class defined in that file into a new-style class as well.

Next Previous