summaryrefslogtreecommitdiffstats
path: root/Lib/aifc.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/aifc.py')
-rw-r--r--Lib/aifc.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/aifc.py b/Lib/aifc.py
index a4d9616..6c19dea 100644
--- a/Lib/aifc.py
+++ b/Lib/aifc.py
@@ -293,8 +293,6 @@ class Aifc_read:
self._comm_chunk_read = 0
while 1:
self._ssnd_seek_needed = 1
- #DEBUG: SGI's soundfiler has a bug. There should
- # be no need to check for EOF here.
try:
chunk = Chunk(self._file)
except EOFError:
@@ -337,10 +335,6 @@ class Aifc_read:
# else, assume it is an open file object already
self.initfp(f)
- def __del__(self):
- if self._file:
- self.close()
-
#
# User visible methods.
#