(line, stack)
| 21 | |
| 22 | |
| 23 | def PrintStack(line, stack): |
| 24 | global _skip |
| 25 | if _skip > 0: |
| 26 | return |
| 27 | print("Unbalanced " + line.rstrip()) |
| 28 | for l in stack: |
| 29 | print(l.rstrip()) |
| 30 | |
| 31 | |
| 32 | def ProcessStack(line, f): |
no outgoing calls
no test coverage detected