(path)
| 103 | |
| 104 | def make_do(section): |
| 105 | def do(path): |
| 106 | sections = read_sections(path) |
| 107 | if section not in sections: |
| 108 | return None |
| 109 | |
| 110 | return sections[section].size |
| 111 | |
| 112 | return do |
| 113 |
nothing calls this directly
no test coverage detected