go-python/gpython

Use Cgo to support C modules

Opened this issue · 6 comments

I'll be honest; I'm completely new to this project and know next to nothing about it, so if there's a known reason Cgo wouldn't work, sorry. However, I think that using Cgo could be an easy(ish) way to support other modules, however likely with some changes for how Gpython works over others.

ncw commented

We could certainly initialise and run python modules written in C, however we'd have to re-implement all the C services that they rely on so that the Go equivalent got called. Given that the implementation of Python objects is completely different to that of CPython I'd put this in the very hard but not quite impossible category!

another option (possibly as difficult or work intensive) would be to emulate the C API as PyPy did with its cpyext module:

My personal suggestion is targeting HPy instead of C API itself, C API expose too much of implementation detail from CPython.
https://hpyproject.org/

FYI, GraalPython and PyPy success to support HPy

(By the way, long time no see people)

yes, I was about to suggest HPy as well (but was refreshing my memory a bit about it before posting :})

anyways: whatever the avenue gpython chooses, it's a very long and hard road, which (to be honest) is probably not sustainable with the current workforce available for this project (sadly, but it is what it is)