(backend_impl)
| 172 | |
| 173 | |
| 174 | def _get_backend_instance(backend_impl): |
| 175 | if backend_impl.__name__ not in _BACKENDS: |
| 176 | _BACKENDS[backend_impl.__name__] = backend_impl() |
| 177 | return _BACKENDS[backend_impl.__name__] |
| 178 | |
| 179 | |
| 180 | def _check_args_backend(backend_impl, args): |
no outgoing calls
no test coverage detected