From d7abed3b14238f9f4809af93b1381b7e92c0891d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 20 Aug 1996 20:40:07 +0000 Subject: Get rid of access statement --- Lib/wave.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Lib/wave.py') diff --git a/Lib/wave.py b/Lib/wave.py index 5d1a1c1629..bba4e87dcb 100644 --- a/Lib/wave.py +++ b/Lib/wave.py @@ -190,10 +190,10 @@ class Wave_read: # _data_chunk -- instantiation of a chunk class for the DATA chunk # _framesize -- size of one frame in the file - access _file, _nchannels, _nframes, _sampwidth, _framerate, \ - _comptype, _compname, _soundpos, \ - _fmt_chunk_read, _data_seek_needed, \ - _data_chunk, _framesize: private +## access _file, _nchannels, _nframes, _sampwidth, _framerate, \ +## _comptype, _compname, _soundpos, \ +## _fmt_chunk_read, _data_seek_needed, \ +## _data_chunk, _framesize: private def initfp(self, file): self._file = file @@ -321,7 +321,7 @@ class Wave_read: # # Internal methods. # - access *: private +## access *: private def _read_fmt_chunk(self, chunk): wFormatTag = _read_short(chunk) @@ -362,9 +362,9 @@ class Wave_write: # _nframeswritten -- the number of frames actually written # _datawritten -- the size of the audio samples actually written - access _file, _comptype, _compname, _nchannels, _sampwidth, \ - _framerate, _nframes, _nframeswritten, \ - _datalength, _datawritten: private +## access _file, _comptype, _compname, _nchannels, _sampwidth, \ +## _framerate, _nframes, _nframeswritten, \ +## _datalength, _datawritten: private def __init__(self, f): if type(f) == type(''): @@ -505,7 +505,7 @@ class Wave_write: # # Internal methods. # - access *: private +## access *: private def _ensure_header_written(self, datasize): if not self._datawritten: -- cgit v1.2.1