From: Guido van Rossum Date: Tue, 14 Apr 1992 11:05:49 +0000 (+0000) Subject: added comment and main() call X-Git-Tag: v0.9.8~356 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b385328fbc1ed0d2d2a053ecbfc9ef1e006bf853;p=thirdparty%2FPython%2Fcpython.git added comment and main() call --- diff --git a/Demo/sgi/cd/cdwin.py b/Demo/sgi/cd/cdwin.py index 823866f636e1..8834c1d3fe42 100755 --- a/Demo/sgi/cd/cdwin.py +++ b/Demo/sgi/cd/cdwin.py @@ -1,3 +1,5 @@ +# Window interface to (some of) the CD player's vital audio functions + import cd import stdwin from stdwinevents import * @@ -91,3 +93,5 @@ def getgeo(win): v1 = top + (bottom - top) / 3 v2 = top + (bottom - top) * 2 / 3 return left, top, right, bottom, v1, v2 + +main()