summaryrefslogtreecommitdiff
path: root/Lib/aifc.py
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-02-26 21:11:58 +0900
committerGitHub <noreply@github.com>2017-02-26 21:11:58 +0900
commit5dc33eea538361f8a218255f83db2e9298dd8c53 (patch)
tree994d30279dcae5fff4522fc5b190ba0f844207ac /Lib/aifc.py
parent5aa3856b4f325457e8ec1ccf669369f543e1f6b5 (diff)
downloadcpython-git-5dc33eea538361f8a218255f83db2e9298dd8c53.tar.gz
bpo-29110: add test for Aifc_write. (GH-293)
follow up of GH-162
Diffstat (limited to 'Lib/aifc.py')
-rw-r--r--Lib/aifc.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/aifc.py b/Lib/aifc.py
index 380adc8d0d..13ad7dc5ca 100644
--- a/Lib/aifc.py
+++ b/Lib/aifc.py
@@ -303,6 +303,8 @@ class Aifc_read:
# _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
# _framesize -- size of one frame in the file
+ _file = None # Set here since __del__ checks it
+
def initfp(self, file):
self._version = 0
self._convert = None
@@ -547,6 +549,8 @@ class Aifc_write:
# _datalength -- the size of the audio samples written to the header
# _datawritten -- the size of the audio samples actually written
+ _file = None # Set here since __del__ checks it
+
def __init__(self, f):
if isinstance(f, str):
file_object = builtins.open(f, 'wb')