Return the name of the data source.
(self)
| 123 | |
| 124 | @property |
| 125 | def name(self): |
| 126 | "Return the name of the data source." |
| 127 | name = capi.get_ds_name(self._ptr) |
| 128 | return force_str(name, self.encoding, strings_only=True) |
nothing calls this directly
no test coverage detected