Get the requested backend, if any, without triggering resolution.
(self)
| 794 | return self._get(key) |
| 795 | |
| 796 | def _get_backend_or_none(self): |
| 797 | """Get the requested backend, if any, without triggering resolution.""" |
| 798 | backend = self._get("backend") |
| 799 | return None if backend is rcsetup._auto_backend_sentinel else backend |
| 800 | |
| 801 | def __repr__(self): |
| 802 | class_name = self.__class__.__name__ |
no test coverage detected