-
-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python exceptions can't be handled from Lua scripts using pcall #45
Comments
Is it a bug or an intended behaviour? |
At least, it doesn't crash. These things used to. :) Note that the The other way is tricky because supporting pcall(), correct me if I'm wrong, would mean that we translate a Python exception into a Lua longjmp() error to pass it on to Lua, and then detect and translate it back into a Python exception when it turns out that Lua didn't handle it and passed it back to Lupa (i.e. when there is no pcall() wrapping it). I wouldn't call it "intended behaviour", but I'm not sure it's worth changing. |
I see, thanks for explanation. I worked around it by wrapping Python functions to a decorator that converts Python exceptions to This means that Python exceptions are not propagated back to Python as-is when they are not handled, they are converted to LuaErrors. For my use cases it is even better because for these new errors error messages include line numbers. Maybe in future I'll attach original Python exception objects to errors as userdata; for the current use cases repr is enough. It seems both behaviours have their use cases: raising original errors and raising wrapped errors, even in a single runtime. At the moment I don't have plans to work on it further because an existing solution works well enough, but supporting something like this directly in lupa could help to clean up some of the messy code. Creating an existing workaround was quite tricky, and it has edge cases with coroutines (Python decorator doesn't fix values sent using coroutine.send). |
The text was updated successfully, but these errors were encountered: