From: Guido van Rossum Date: Mon, 13 Aug 2001 15:04:33 +0000 (+0000) Subject: Commenting out the getfillable() method -- it's broken, and nobody X-Git-Tag: v2.2a3~591 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8710681400acac735ad7bdb980a075ec0591aa7c;p=thirdparty%2FPython%2Fcpython.git 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 234514597ca0..8945c983c21a 100644 --- a/Lib/audiodev.py +++ b/Lib/audiodev.py @@ -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.