Psymaster wrote:
Sorry if it's been asked before, but why this doesn't work:
class my_font(pygame.font.Font):
pass
while this does:
class my_sprite(pygame.sprite.Sprite):
pass
the first gives a TypeError
the problem is Font is a C extension type, which by default aren't
inheritable from. this isn't too hard to update, but for now i still
want to maintain compatability with old python releases.