diff options
author | Guido van Rossum <guido@python.org> | 2001-08-13 15:04:33 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-08-13 15:04:33 +0000 |
commit | 8710681400acac735ad7bdb980a075ec0591aa7c (patch) | |
tree | bef8f3edbe9b8fb1ba690af9614337ada8fb7613 /Lib/audiodev.py | |
parent | 8837814cd4de59f911fdb5d8eef1b46f97a563b1 (diff) | |
download | cpython-git-8710681400acac735ad7bdb980a075ec0591aa7c.tar.gz |
Commenting out the getfillable() method -- it's broken, and nobody
remembers what it is supposed to do. :-(
Diffstat (limited to 'Lib/audiodev.py')
-rw-r--r-- | Lib/audiodev.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/audiodev.py b/Lib/audiodev.py index 234514597c..8945c983c2 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. |