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
Just wanted to confirm that there's no way to call python from D at the moment? E.g.
def test_funcs(): from pyd import appends_to_fn_cb import pytest # FIXME with pytest.raises(RuntimeError): assert appends_to_fn_cb(lambda x: str(x), 42, "post") == \ "42post"
The text was updated successfully, but these errors were encountered:
Just if anyone else needs this, what I eventually did, as a temporary work around, was:
import deimos.python.abstract_ : PyObject_CallObject; import deimos.python.object; export PyObject* callFn(PyObject* fn, PyObject* args) { return PyObject_CallObject(fn, args); }
Sorry, something went wrong.
No branches or pull requests
Just wanted to confirm that there's no way to call python from D at the moment? E.g.
The text was updated successfully, but these errors were encountered: