条件によっては、別の基本クラスを使用するクラスを作成する必要があります。いくつかのクラスでは、悪名高い:
TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
1 つの例は ですsqlite3
。これは、インタープリターで使用することもできる短い例です。
>>> import sqlite3
>>> x = type('x', (sqlite3,), {})
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases