summaryrefslogtreecommitdiffstats
path: root/Lib/audiodev.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-13 15:04:33 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-13 15:04:33 (GMT)
commit8710681400acac735ad7bdb980a075ec0591aa7c (patch)
treebef8f3edbe9b8fb1ba690af9614337ada8fb7613 /Lib/audiodev.py
parent8837814cd4de59f911fdb5d8eef1b46f97a563b1 (diff)
downloadcpython-8710681400acac735ad7bdb980a075ec0591aa7c.zip
cpython-8710681400acac735ad7bdb980a075ec0591aa7c.tar.gz
cpython-8710681400acac735ad7bdb980a075ec0591aa7c.tar.bz2
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.py5
1 files changed, 3 insertions, 2 deletions
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 @@ 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.