()
| 151 | enable_keys() |
| 152 | |
| 153 | def start_qsort(): |
| 154 | disable_keys() |
| 155 | clear() |
| 156 | show_text("Quicksort") |
| 157 | qsort(s, 0, len(s) - 1) |
| 158 | clear() |
| 159 | show_text(instructions1) |
| 160 | show_text(instructions2, line=1) |
| 161 | enable_keys() |
| 162 | |
| 163 | def init_shelf(): |
| 164 | global s |
nothing calls this directly
no test coverage detected
searching dependent graphs…