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/wave.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/wave.py')
-rw-r--r-- | Lib/wave.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Lib/wave.py b/Lib/wave.py index 5d1a1c1..bba4e87 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: |