(l)
| 643 | set3 = set(list3) |
| 644 | |
| 645 | def show(l): |
| 646 | ret = f'len={len(l)}\n' |
| 647 | for c in l: |
| 648 | cc = ord(c) |
| 649 | if (cc >= 32 and cc < 127) or c == '\n': |
| 650 | ret += c |
| 651 | else: |
| 652 | ret += f' [0x{hex(cc)}]' |
| 653 | return ret |
| 654 | |
| 655 | if verbose: |
| 656 | print(f'list1:\n{show(list1)}') |
no outgoing calls
no test coverage detected
searching dependent graphs…