Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
from ecflow import Defs,Suite,Task, Defstatus, AutoCancel

defs = Defs()
defs +=
        Suite("s1",
            Task("t1",Defstatus("complete")),
            Task("t2",Defstatus(DState.complete))) )

The following shows alternative styles that produce the same definition:

...