Commenting out the getfillable() method -- it's broken, and nobody
remembers what it is supposed to do. :-(
diff --git a/Lib/audiodev.py b/Lib/audiodev.py
index 2345145..8945c98 100644
--- a/Lib/audiodev.py
+++ b/Lib/audiodev.py
@@ -210,8 +210,9 @@
         else:
             return 0
 
-    def getfillable(self):
-        return BUFFERSIZE - self.getfilled()
+##    # Nobody remembers what this method does, and it's broken. :-(
+##    def getfillable(self):
+##        return BUFFERSIZE - self.getfilled()
 
 def AudioDev():
     # Dynamically try to import and use a platform specific module.