[Python-Dev] Possible low-hanging optimization

Skip Montanaro skip@pobox.com
Thu, 12 Dec 2002 13:47:53 -0600


    Guido> For classic classes, it would be too much of a break with
    Guido> history.

In addition, since most classes exist to associate state with methods that
operate on it you'd probably only be delaying the creation of self.__dict__
by a few milliseconds in the common case.

Skip