(name, data)
| 97 | |
| 98 | |
| 99 | def dictionary_file_summary(name, data): |
| 100 | if not name.endswith(".txt"): |
| 101 | return None |
| 102 | text = decode_text(name, data) |
| 103 | entries = parse_dict(text) |
| 104 | return entries |
| 105 | |
| 106 | |
| 107 | def append_dictionary_file_examples(lines, entries): |
no test coverage detected