We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
>>> import quickjs >>> ctx = quickjs.Context() >>> def test(): ... raise Exception ... >>> ctx.add_callable("test", test) >>> ctx.eval("async function a() {await test()}") >>> ctx.eval("a()") Segmentation fault (core dumped)
The text was updated successfully, but these errors were encountered:
This happens when attempting to create a return Object after a Python exception was set in JS_Eval.
Object
JS_Eval
Sorry, something went wrong.
Fix PetterS#63 PetterS#66, supersede PetterS#67: Wrap Python exceptio…
a63e823
…ns into custom InternalPythonError object extending InternalError.
qwenger
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: