()
| 143 | } |
| 144 | |
| 145 | pub(super) fn libcache() -> &'static PyRwLock<ExternalLibs> { |
| 146 | rustpython_common::static_cell! { |
| 147 | static LIBCACHE: PyRwLock<ExternalLibs>; |
| 148 | } |
| 149 | LIBCACHE.get_or_init(|| PyRwLock::new(ExternalLibs::new())) |
| 150 | } |
no test coverage detected