[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] pygame.mixer crashes



Ðáíáãéþôçò ÔóéìðÝñçò wrote:
Hi all

I have the following problem:

import pygame.mixer
pygame.mixer.init()
pygame.mixer.quit()
pygame.mixer.init()

======= RESTART ========

or

when I run the program from the Konsole it says:
Fatal Python error: (pygame parachute) Segmentation
Fault
Aborted

My system is PC Linux OS
any ideas?
I think it'd be more helpful if you told us what linux distribution, what kernel version, what python version, what pygame version ,etc.

Try this and see what you get:
import pygame.mixer
pygame.mixer.init()
pygame.mixer.quit()
print pygame.mixer.get_init()

Just to see if it is still initialized after the call to quit().
It should print 'None.'
-Luke