From: Guido van Rossum Date: Wed, 22 Apr 1992 13:47:50 +0000 (+0000) Subject: Added comment header; don't use undocumented internals. X-Git-Tag: v0.9.8~338 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ac9063cefe1daa73228d567d03104565b764610;p=thirdparty%2FPython%2Fcpython.git Added comment header; don't use undocumented internals. --- diff --git a/Demo/sgi/cd/playcd.py b/Demo/sgi/cd/playcd.py index dc38ed91587a..29ccb3617b11 100755 --- a/Demo/sgi/cd/playcd.py +++ b/Demo/sgi/cd/playcd.py @@ -1,3 +1,5 @@ +# Play CD audio on speaker or headphones. + def playaudio(port, type, audio): port.writesamps(audio) @@ -70,7 +72,5 @@ def main(): except KeyboardInterrupt: pass al.setparams(AL.DEFAULT_DEVICE, oldparams) - r.player.close() - r.parser.deleteparser() main()