fn try_init_once_cell_py_attached<'a, F, T, E>( cell: &'a OnceCell<T>, _py: Python<'_>, f: F, ) -> Result<&'a T, E>where F: FnOnce() -> Result<T, E>,