We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
sbinet
No branches or pull requests
go
functions returning anerror
such as:should be wrapped as:
where a
python
Exception
is raised if thego
error
is non-nil
.The text was updated successfully, but these errors were encountered: