Hello, we have a bug report of a failure on python 3.1 with the pygame.mixer.Channel object.
https://bitbucket.org/pygame/pygame/issue/38/pygame-191-mixer-bug Can someone with python 3.1 or python3.2 confirm that this works or fails for them? You should hear a sound, and the the program finishes cleanly after 3 seconds. import pygame, pygame.examples, time, os pygame.init() main_dir = os.path.split(os.path.abspath(pygame.examples.__file__))[0] data_dir = os.path.join(main_dir, 'data') a_sound = pygame.mixer.Sound(os.path.join(data_dir, "whiff.wav")) c = pygame.mixer.Channel(1); c.play(a_sound) time.sleep(3)
