(lines)
| 636 | |
| 637 | |
| 638 | def _importSectionIter(lines): |
| 639 | section = Section() |
| 640 | for line in lines: |
| 641 | if not line: |
| 642 | if section.lines: |
| 643 | yield section |
| 644 | section = Section() |
| 645 | else: |
| 646 | section.lines.append(line) |
| 647 | if section.lines: |
| 648 | yield section |
| 649 | |
| 650 | |
| 651 | def _importCreateFit(lines): |