I currently use Cython to link C and Python, and get speedup in slow bits of python code. However, I\'d like to use goroutines to implement a really slow (and very paralleli
Update 2015: possible as of Go 1.5 https://blog.filippo.io/building-python-modules-with-go-1-5/
with Go 1.5 you can build .so objects and import them as Python modules, running Go code (instead of C) directly from Python.