( commands, rules )
| 33 | return seq |
| 34 | |
| 35 | def draw( commands, rules ): |
| 36 | for b in commands: |
| 37 | try: |
| 38 | rules[b]() |
| 39 | except TypeError: |
| 40 | try: |
| 41 | draw(rules[b], rules) |
| 42 | except: |
| 43 | pass |
| 44 | |
| 45 | |
| 46 | def main(): |
no outgoing calls
no test coverage detected
searching dependent graphs…