samufi
1
When exporting a function to python as specified in the docs, I get a warning
@export
def PyInit_my_module() -> PythonObject:
...
The warning is
>> warning: @export requires an explicit 'abi()' effect on the function
I was not able to find documentation on what I should put in there. Can someone help?
fcormack
(Fraser Cormack)
3
Hey! Thanks for the question. In short, you should use the "C" ABI.
You can find the documentation on this here: