diff options
author | Guido van Rossum <guido@python.org> | 1992-06-03 16:47:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-06-03 16:47:24 (GMT) |
commit | ada67ec3e10b8882b98a174d1e72e35f16da7895 (patch) | |
tree | 1b10f46ec071dbd61de91cd49d695a05feb0e1c8 /Lib | |
parent | b66efa0d750dab70b793ba72e779d9ce6998a36e (diff) | |
download | cpython-ada67ec3e10b8882b98a174d1e72e35f16da7895.zip cpython-ada67ec3e10b8882b98a174d1e72e35f16da7895.tar.gz cpython-ada67ec3e10b8882b98a174d1e72e35f16da7895.tar.bz2 |
Comment out debug prints (by Sjoerd)
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/irix5/readcd.py | 8 | ||||
-rwxr-xr-x | Lib/plat-irix5/readcd.py | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Lib/irix5/readcd.py b/Lib/irix5/readcd.py index 354d372..85f56b3 100755 --- a/Lib/irix5/readcd.py +++ b/Lib/irix5/readcd.py @@ -7,7 +7,7 @@ _Stop = 'Readcd.Stop' def _doatime(self, type, data): if ((data[0] * 60) + data[1]) * 75 + data[2] > self.end: - print 'done with list entry',`self.listindex` +## print 'done with list entry',`self.listindex` raise _Stop func, arg = self.callbacks[type] if func: @@ -15,7 +15,7 @@ def _doatime(self, type, data): def _dopnum(self, type, data): if data > self.end: - print 'done with list entry',`self.listindex` +## print 'done with list entry',`self.listindex` raise _Stop func, arg = self.callbacks[type] if func: @@ -48,7 +48,7 @@ class Readcd(): self.status = None self.trackinfo = None if self.playing: - print 'stop playing from eject' +## print 'stop playing from eject' raise _Stop def pmsf2msf(self, track, min, sec, frame): @@ -199,7 +199,7 @@ class Readcd(): if self.listindex >= len(self.list): return start, end = self.list[self.listindex] - print 'starting with',`(start, end)` +## print 'starting with',`(start, end)` try: min, sec, frame = start dummy = self.player.seek(min, sec, frame) diff --git a/Lib/plat-irix5/readcd.py b/Lib/plat-irix5/readcd.py index 354d372..85f56b3 100755 --- a/Lib/plat-irix5/readcd.py +++ b/Lib/plat-irix5/readcd.py @@ -7,7 +7,7 @@ _Stop = 'Readcd.Stop' def _doatime(self, type, data): if ((data[0] * 60) + data[1]) * 75 + data[2] > self.end: - print 'done with list entry',`self.listindex` +## print 'done with list entry',`self.listindex` raise _Stop func, arg = self.callbacks[type] if func: @@ -15,7 +15,7 @@ def _doatime(self, type, data): def _dopnum(self, type, data): if data > self.end: - print 'done with list entry',`self.listindex` +## print 'done with list entry',`self.listindex` raise _Stop func, arg = self.callbacks[type] if func: @@ -48,7 +48,7 @@ class Readcd(): self.status = None self.trackinfo = None if self.playing: - print 'stop playing from eject' +## print 'stop playing from eject' raise _Stop def pmsf2msf(self, track, min, sec, frame): @@ -199,7 +199,7 @@ class Readcd(): if self.listindex >= len(self.list): return start, end = self.list[self.listindex] - print 'starting with',`(start, end)` +## print 'starting with',`(start, end)` try: min, sec, frame = start dummy = self.player.seek(min, sec, frame) |