(y)
| 104 | return True |
| 105 | |
| 106 | def remove_line(y): |
| 107 | global shaft, width |
| 108 | del shaft[y] # cut out line |
| 109 | shaft.insert(0, [ empty ] * width) # fill up with an empty line |
| 110 | |
| 111 | for y in range(height): |
| 112 | if line_full(shaft[y]): |
no test coverage detected