()
| 728 | |
| 729 | |
| 730 | def gen_names(): |
| 731 | for letters in itertools.chain( |
| 732 | itertools.combinations_with_replacement(string.ascii_letters, 1), |
| 733 | itertools.combinations_with_replacement(string.ascii_letters, 2), |
| 734 | ): |
| 735 | yield "".join(letters) |
| 736 | |
| 737 | |
| 738 | class TestCompletionHelpers(TestCase): |
no outgoing calls
no test coverage detected