diff options
author | Guido van Rossum <guido@python.org> | 1996-08-20 20:40:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-20 20:40:07 (GMT) |
commit | d7abed3b14238f9f4809af93b1381b7e92c0891d (patch) | |
tree | 70b7a32ec52152dc251341a4bdcd13a1c82f7393 /Lib/aifc.py | |
parent | 3e065ada2c878b20e3386b48f7e5a1e23925f3d2 (diff) | |
download | cpython-d7abed3b14238f9f4809af93b1381b7e92c0891d.zip cpython-d7abed3b14238f9f4809af93b1381b7e92c0891d.tar.gz cpython-d7abed3b14238f9f4809af93b1381b7e92c0891d.tar.bz2 |
Get rid of access statement
Diffstat (limited to 'Lib/aifc.py')
-rw-r--r-- | Lib/aifc.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Lib/aifc.py b/Lib/aifc.py index 54f0cfd..0c2b10b 100644 --- a/Lib/aifc.py +++ b/Lib/aifc.py @@ -338,10 +338,10 @@ class Aifc_read: # _ssnd_chunk -- instantiation of a chunk class for the SSND chunk # _framesize -- size of one frame in the file - if 0: access _file, _nchannels, _nframes, _sampwidth, _framerate, \ - _comptype, _compname, _markers, _soundpos, _version, \ - _decomp, _comm_chunk_read, __aifc, _ssnd_seek_needed, \ - _ssnd_chunk, _framesize: private +## if 0: access _file, _nchannels, _nframes, _sampwidth, _framerate, \ +## _comptype, _compname, _markers, _soundpos, _version, \ +## _decomp, _comm_chunk_read, __aifc, _ssnd_seek_needed, \ +## _ssnd_chunk, _framesize: private def initfp(self, file): self._file = file @@ -502,7 +502,7 @@ class Aifc_read: # # Internal methods. # - if 0: access *: private +## if 0: access *: private def _decomp_data(self, data): dummy = self._decomp.SetParam(CL.FRAME_BUFFER_SIZE, @@ -635,9 +635,9 @@ class Aifc_write: # _datalength -- the size of the audio samples written to the header # _datawritten -- the size of the audio samples actually written - if 0: access _file, _comptype, _compname, _nchannels, _sampwidth, \ - _framerate, _nframes, _aifc, _version, _comp, \ - _nframeswritten, _datalength, _datawritten: private +## if 0: access _file, _comptype, _compname, _nchannels, _sampwidth, \ +## _framerate, _nframes, _aifc, _version, _comp, \ +## _nframeswritten, _datalength, _datawritten: private def __init__(self, f): if type(f) == type(''): @@ -829,7 +829,7 @@ class Aifc_write: # # Internal methods. # - if 0: access *: private +## if 0: access *: private def _comp_data(self, data): dum = self._comp.SetParam(CL.FRAME_BUFFER_SIZE, len(data)) |