Extend the _cffi_backend to emit a PyInit_{module} function for embedding
This came up on the cffi-mailing list. If I understand correctly, they want to call PyInit_{module}
on an cffi-based extension module. cffi extension modules built for PyPy do not export that symbol, they export _cffi_pypyinit_{module}
and that is called by the import mechanism.
Would be possible to export a Py_Init_{module}
function that would call cffi_start_python
, then _cffi_pypyinit_{module}
? What would it return?