projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8837814
)
Commenting out the getfillable() method -- it's broken, and nobody
author
Guido van Rossum
<guido@python.org>
Mon, 13 Aug 2001 15:04:33 +0000
(15:04 +0000)
committer
Guido 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
patch
|
blob
|
history
diff --git
a/Lib/audiodev.py
b/Lib/audiodev.py
index 234514597ca0b163128f8ccc707f14175bb26201..8945c983c21a1f4996a5037f369cc08d95a10720 100644
(file)
--- 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.