Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3e7a697

Browse files
committed
temporarily disabled the access statements
1 parent 0ec3126 commit 3e7a697

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lib/aifc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ class Aifc_read:
338338
# _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
339339
# _framesize -- size of one frame in the file
340340

341-
access _file, _nchannels, _nframes, _sampwidth, _framerate, \
341+
if 0: access _file, _nchannels, _nframes, _sampwidth, _framerate, \
342342
_comptype, _compname, _markers, _soundpos, _version, \
343343
_decomp, _comm_chunk_read, __aifc, _ssnd_seek_needed, \
344344
_ssnd_chunk, _framesize: private
@@ -502,7 +502,7 @@ def readframes(self, nframes):
502502
#
503503
# Internal methods.
504504
#
505-
access *: private
505+
if 0: access *: private
506506

507507
def _decomp_data(self, data):
508508
dummy = self._decomp.SetParam(CL.FRAME_BUFFER_SIZE,
@@ -635,7 +635,7 @@ class Aifc_write:
635635
# _datalength -- the size of the audio samples written to the header
636636
# _datawritten -- the size of the audio samples actually written
637637

638-
access _file, _comptype, _compname, _nchannels, _sampwidth, \
638+
if 0: access _file, _comptype, _compname, _nchannels, _sampwidth, \
639639
_framerate, _nframes, _aifc, _version, _comp, \
640640
_nframeswritten, _datalength, _datawritten: private
641641

@@ -829,7 +829,7 @@ def close(self):
829829
#
830830
# Internal methods.
831831
#
832-
access *: private
832+
if 0: access *: private
833833

834834
def _comp_data(self, data):
835835
dum = self._comp.SetParam(CL.FRAME_BUFFER_SIZE, len(data))

0 commit comments

Comments
 (0)