mirror of
https://github.com/python/cpython.git
synced 2026-05-19 02:44:16 -04:00
960b9b7a2f
which forbids constructing types that have it set. The effect is to speed ./python.exe -m timeit -s 'import abc' -s 'class Foo(object): __metaclass__ = abc.ABCMeta' 'Foo()' up from 2.5us to 0.201us. This fixes issue 1762.