b0bleet

Results 4 issues of b0bleet

### Required prerequisites - [X] Make sure you've read the [documentation](https://pybind11.readthedocs.io). Your issue may be addressed there. - [X] Search the [issue tracker](https://github.com/pybind/pybind11/issues) and [Discussions](https:/pybind/pybind11/discussions) to verify that this hasn't...

triage

set_hook doesn't work properly when executing Lua with exec_async() ```rust use anyhow::Result; use mlua::{HookTriggers, Lua}; #[tokio::main] async fn main() -> Result { let lua = Lua::new(); lua.set_hook(HookTriggers::EVERY_LINE, move |_lua, _debug|...