builtins
Python 3.1には、モジュールにわからない新しい組み込み関数があります。
__build_class__(...)
__build_class__(func, name, *bases, metaclass=None, **kwds) -> class
Internal helper function used by the class statement.
この関数は何をしますか?内部にあるのに、なぜ組み込みである必要があるのですか?type(name, bases, dict)
機能の違いは何ですか?