(self, index)
| 143 | return capi.get_intring(self.ptr, index - 1) |
| 144 | |
| 145 | def _get_single_external(self, index): |
| 146 | return GEOSGeometry( |
| 147 | capi.geom_clone(self._get_single_internal(index)), srid=self.srid |
| 148 | ) |
| 149 | |
| 150 | _set_single = GEOSGeometry._set_single_rebuild |
| 151 | _assign_extended_slice = GEOSGeometry._assign_extended_slice_rebuild |
nothing calls this directly
no test coverage detected