On 20 Aug 2006 at 10:50, Alex Holkner wrote: > Lenard Lindstrom wrote: > > >Downloaded the latest SVN version. Found that > >pygame.mouse.get_cursor() returns a 6, not 4, element tuple. The size > >and hotspot values are not tuples. > > > > > Thanks again, and fixed. > Also calling Surface.set_colorkey() without arguments raises an exception as demonstrated by the following program:
import pygame pygame.init() screen = pygame.display.set_mode((100,100)) s = pygame.Surface((10,10)) s.set_colorkey((0,0,0,0)) s.set_colorkey() Lenard Lindstrom <[EMAIL PROTECTED]>