()
| 57 | } |
| 58 | |
| 59 | fn global_ident() -> &'static PyRwLock<Option<GlobalIdent>> { |
| 60 | rustpython_common::static_cell! { |
| 61 | static IDENT: PyRwLock<Option<GlobalIdent>>; |
| 62 | }; |
| 63 | IDENT.get_or_init(|| PyRwLock::new(None)) |
| 64 | } |
| 65 | |
| 66 | #[derive(Default, FromArgs)] |
| 67 | struct OpenLogArgs { |
no test coverage detected