(text)
| 364 | |
| 365 | @staticmethod |
| 366 | def _from_text(text): |
| 367 | return ( |
| 368 | EntryPoint(name=item.value.name, value=item.value.value, group=item.name) |
| 369 | for item in Sectioned.section_pairs(text or '') |
| 370 | ) |
| 371 | |
| 372 | |
| 373 | class PackagePath(pathlib.PurePosixPath): |
no test coverage detected