From ad7324c71fbbb60eb34f7d6fe6b5c3663d114304 Mon Sep 17 00:00:00 2001 From: Sjoerd Mullender Date: Thu, 16 Dec 1993 14:02:44 +0000 Subject: Don't close the file explicitly. --- Lib/sunau.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/sunau.py b/Lib/sunau.py index 1acebd0..2cb35a7 100644 --- a/Lib/sunau.py +++ b/Lib/sunau.py @@ -274,7 +274,6 @@ class Au_read: self._soundpos = pos def close(self): - self._file.close() self._file = None class Au_write: @@ -397,7 +396,7 @@ class Au_write: if self._nframeswritten != self._nframes or \ self._datalength != self._datawritten: self._patchheader() - self._file.close() + self._file.flush() self._file = None # -- cgit v0.12