(path)
| 63 | |
| 64 | |
| 65 | def example__sequential_processing(path): |
| 66 | long_names = [] |
| 67 | for ft in mwm.Mwm(path): |
| 68 | if len(ft.readable_name()) > 100: |
| 69 | long_names.append(ft.readable_name()) |
| 70 | |
| 71 | print("Long names:", long_names) |
| 72 | |
| 73 | |
| 74 | def example__working_with_features(path): |
no test coverage detected