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"
Just wanted to confirm that there's no way to call python from D at the moment? E.g.