(text)
| 1467 | |
| 1468 | |
| 1469 | def ask_yes_no(text): |
| 1470 | answer = None |
| 1471 | while answer not in ['y', 'n']: |
| 1472 | answer = str(input("\nQ: %s (y/n): " % text)) |
| 1473 | print("\n") |
| 1474 | return answer == 'y' |
| 1475 | |
| 1476 | |
| 1477 | def abbreviate_line(line, width): |
no outgoing calls
no test coverage detected
searching dependent graphs…