gopy icon indicating copy to clipboard operation
gopy copied to clipboard

gopy generates a CPython extension module from a go package.

Results 80 gopy issues
Sort by recently updated
recently updated
newest added

replaces mailing list ( [email protected] ), with links to GitHub discussions

Hello there, first of all, thank you for this amazing project! While experimenting with it, I came across something that seems like unusual behavior when passing arguments into a Python...

Hi, Thanks for the great tool! # Description Trying to return a string from Python callback to Go - and getting SIGSEGV: ``` > python test.py fs.CallBack(22, cbfun)... in python...

I installed gopy and wasn't sure which version I have. I was not sure what I use since release was not tagged in github -> latest was 0.4.8, but latest...

It would be awesome to support free threaded extensions with gopy. Based on the support for python free threaded initialization should be created as: https://docs.python.org/3/howto/free-threading-extensions.html#freethreading-extensions-howto

I was wondering if this is an abandonware by now? From go 1.25 it is not possible to install due to this: https://github.com/golang/go/issues/74462 so `gopy` requires a bump for `x/tools`.

See example: ```go package packet func GoPacketToBytes(shieldID int, packet Packet) ([]byte, error) { // gopy bug buf := bytes.NewBuffer([]byte{}) w := protocol.NewWriter(buf, int32(shieldID)) packet.Marshal(w) return buf.Bytes(), nil } ``` Use...

GCC 15 has been released (fairly) recently, and with it come C23 features such as built-in `bool` types, which obviate the need for defining these in each code-base. In our...

Lowest of the low hanging fruit, but this should make the GitHub action output a bit more useful. Didn't touch appveyor because I know too little about it. Also bumped...

Hi, I am using Gopy and it works as expected on my Mac (using gopy pkg) I am building a wheel file using: python setup.py build python setup.py bdist_wheel When...