Files
cpython/Objects
Guido van Rossum e54616cb6f (Merge into trunk.)
Fix for SF bug #492345.  (I could've sworn I checked this in, but
apparently I didn't!)

This code:

    class Classic:
        pass

    class New(Classic):
        __metaclass__ = type

attempts to create a new-style class with only classic bases -- but it
doesn't work right.  Attempts to fix it so it works caused problems
elsewhere, so I'm now raising a TypeError in this case.
2001-12-14 04:19:56 +00:00
..
2000-05-02 18:34:30 +00:00
2001-10-19 13:49:35 +00:00
2001-08-29 23:54:21 +00:00
2001-12-14 04:19:56 +00:00