(line)
| 323 | |
| 324 | # Count number of leading blanks. |
| 325 | def getlspace(line): |
| 326 | i, n = 0, len(line) |
| 327 | while i < n and line[i] == " ": |
| 328 | i += 1 |
| 329 | return i |
| 330 | |
| 331 | |
| 332 | if __name__ == '__main__': |
no outgoing calls
no test coverage detected
searching dependent graphs…