Return (line, col) tuple of ints from 'line.col' string.
(index)
| 224 | return first, last |
| 225 | |
| 226 | def get_line_col(index): |
| 227 | '''Return (line, col) tuple of ints from 'line.col' string.''' |
| 228 | line, col = map(int, index.split(".")) # Fails on invalid index |
| 229 | return line, col |
| 230 | |
| 231 | |
| 232 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…