Return |_SerializedRelationships| instance populated with relationships for source identified by `source_uri`.
(phys_reader, source_uri)
| 56 | |
| 57 | @staticmethod |
| 58 | def _srels_for(phys_reader, source_uri): |
| 59 | """Return |_SerializedRelationships| instance populated with relationships for |
| 60 | source identified by `source_uri`.""" |
| 61 | rels_xml = phys_reader.rels_xml_for(source_uri) |
| 62 | return _SerializedRelationships.load_from_xml(source_uri.baseURI, rels_xml) |
| 63 | |
| 64 | @staticmethod |
| 65 | def _walk_phys_parts(phys_reader, srels, visited_partnames=None): |
no test coverage detected