`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`.
gofunctions returning anerrorsuch as:should be wrapped as:
where a
pythonExceptionis raised if thegoerroris non-nil.