Not very good at bug reports and all that but here is something I found 
out, maybe you all can help reproduce it so someone can submit it.

First when you install 1.2 alpha and have python 3.3 or 3.2 you can't play 
.wav without AVbin, also the avbin.dll also has to be added to your working 
directory or pythn installation folder. Also under lib.py there is a code 
block:

except OSError, o:
>                 if ((self.linux_not_found_error not in o.message) and
>                     (self.darwin_not_found_error not in o.message)):
>                     print "Unexpected error loading library %s: %s" % 
> (name, o.message)


except i think in Python 3 OSError.message doesn't exsist. It's strerror 
 so I think it should be


except OSError, o:
                if ((self.linux_not_found_error not in o.strerror) and
                    (self.darwin_not_found_error not in o.strerror)):
                    print "Unexpected error loading library %s: %s" % 
(name, o.strerror)

-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/pyglet-users/-/iVldL-6S7LsJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en.

Reply via email to