# HG changeset patch # User dmcc # Date 1026049024 0 # Node ID cfb00e8cc0ea31320e976675faa6ec64565b9862 # Parent 62c47c3a90cb61418d491c62dd685cabd1131f3e (22:36:03) drewp: plaese use stronger quotes """ on Cue:1 to help my highlighter diff -r 62c47c3a90cb -r cfb00e8cc0ea light8/Cue.py --- a/light8/Cue.py Sun Jul 07 13:33:19 2002 +0000 +++ b/light8/Cue.py Sun Jul 07 13:37:04 2002 +0000 @@ -1,12 +1,12 @@ -'''And that's my cue to exit(0)...''' +"""And that's my cue to exit(0)...""" from time import time from util import subsetdict class Cue: - '''Cues are groups of fades. They can tell you the current levels at a + """Cues are groups of fades. They can tell you the current levels at a given time. They contain Fades, which are actually children of Cue, meaning that Cues can contain Cues. This is similar to the Light9 concept - of Cues and Fades, but without all the Nodes.''' + of Cues and Fades, but without all the Nodes.""" def __init__(self, name, starttime, endtime, *fades): 'Create a cue' self.name = name