Commenting out the getfillable() method -- it's broken, and nobody
authorGuido van Rossum <guido@python.org>
Mon, 13 Aug 2001 15:04:33 +0000 (15:04 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 13 Aug 2001 15:04:33 +0000 (15:04 +0000)
remembers what it is supposed to do. :-(

Lib/audiodev.py

index 234514597ca0b163128f8ccc707f14175bb26201..8945c983c21a1f4996a5037f369cc08d95a10720 100644 (file)
@@ -210,8 +210,9 @@ class Play_Audio_sun:
         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.