()
| 13 | |
| 14 | |
| 15 | def tutorial_hold(): |
| 16 | pipeline = GPipeline() |
| 17 | a, b = MyHoldNode(), MyNode1() |
| 18 | |
| 19 | pipeline.registerGElement(a, set(), 'myHold') |
| 20 | pipeline.registerGElement(b, {a}, 'nodeA') |
| 21 | pipeline.process(3) |
| 22 | |
| 23 | |
| 24 | if __name__ == '__main__': |
no test coverage detected