summaryrefslogtreecommitdiffstats
path: root/Demo/sgi/cd
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-04-14 11:05:49 (GMT)
committerGuido van Rossum <guido@python.org>1992-04-14 11:05:49 (GMT)
commitb385328fbc1ed0d2d2a053ecbfc9ef1e006bf853 (patch)
tree8170e66cd2b6acef6052da6b1e4889db3f740ff8 /Demo/sgi/cd
parent4bd4147569843d2ffb2e3b2c7a4a2017e1243d27 (diff)
downloadcpython-b385328fbc1ed0d2d2a053ecbfc9ef1e006bf853.zip
cpython-b385328fbc1ed0d2d2a053ecbfc9ef1e006bf853.tar.gz
cpython-b385328fbc1ed0d2d2a053ecbfc9ef1e006bf853.tar.bz2
added comment and main() call
Diffstat (limited to 'Demo/sgi/cd')
-rwxr-xr-xDemo/sgi/cd/cdwin.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Demo/sgi/cd/cdwin.py b/Demo/sgi/cd/cdwin.py
index 823866f..8834c1d 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()