New submission from Bertrand Janin <tamen...@neopulsar.org>: With Python 3.1.2-rc1, here is what happens when trying to open a mixer:
Python 3.1.2rc1 (r312rc1:78737, Mar 14 2010, 15:17:09) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import ossaudiodev >>> m = ossaudiodev.openmixer() >>> m.fileno() Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'ossaudiodev.oss_mixer_device' object has no attribute 'fileno' This seems to be due to the fact that the module does not initialize its types with PyType_Ready(), hence the Mixer type never gets its tp_getattro property from its parent type. I attached a small patch to fix this. ---------- components: Extension Modules files: ossaudiodev.c.patch keywords: patch messages: 101063 nosy: tamentis severity: normal status: open title: ossaudiodev not initializing its types type: behavior versions: Python 3.1, Python 3.2, Python 3.3 Added file: http://bugs.python.org/file16547/ossaudiodev.c.patch _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue8139> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com