Release the import lock regardless of any raised exceptions.
(self, exc_type, exc_value, exc_traceback)
| 1227 | _imp.acquire_lock() |
| 1228 | |
| 1229 | def __exit__(self, exc_type, exc_value, exc_traceback): |
| 1230 | """Release the import lock regardless of any raised exceptions.""" |
| 1231 | _imp.release_lock() |
| 1232 | |
| 1233 | |
| 1234 | def _resolve_name(name, package, level): |
nothing calls this directly
no test coverage detected