Re: providing arguments to base.__init__

2005-08-10 Thread Daniel Schüle
Rob Conner schrieb: > seems like you are not running the correct wavePlayer. make sure you > don't have 2 wavePlayer vars. > I am not sure I understand right wavePlayer.py is a module I wrote myself and placed to site-packages so there is no other wavePlayer module I put a class wavePlayer into i

Re: providing arguments to base.__init__

2005-08-10 Thread Rob Conner
seems like you are not running the correct wavePlayer. make sure you don't have 2 wavePlayer vars. -- http://mail.python.org/mailman/listinfo/python-list

Re: providing arguments to base.__init__

2005-08-10 Thread [EMAIL PROTECTED]
I only have an answer to the last one: you do not call the 'destructors' of the base classes, so they are not executed. -- http://mail.python.org/mailman/listinfo/python-list

providing arguments to base.__init__

2005-08-10 Thread Daniel Schüle
Hello Ng, I was playing around with pymedia module and I succeeded when I used complementation instead of inheritance .. but then I was forced to wrap simple methods of sound.Output like pause/unpause/stop. It works, but seems to me unnecessary .. and I would like to grasp why the code below doesn