We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
go functions returning an error such as:
go
error
func Get() (int, error) { return 42, nil }
should be wrapped as:
def get(): return 42
where a python Exception is raised if the go error is non-nil.
python
Exception
nil