(text)
| 297 | |
| 298 | @staticmethod |
| 299 | def _from_text(text): |
| 300 | return ( |
| 301 | EntryPoint(name=item.value.name, value=item.value.value, group=item.name) |
| 302 | for item in Sectioned.section_pairs(text or '') |
| 303 | ) |
| 304 | |
| 305 | |
| 306 | class PackagePath(pathlib.PurePosixPath): |
no test coverage detected