`go` functions returning an `error` such as: ``` go func Get() (int, error) { return 42, nil } ``` should be wrapped as: ``` python def get(): return 42 ``` where a `python` `Exception` is raised if the `go` `error` is non-`nil`.