py/bind: better pythonization
Aberta
- Linguagem predominante
- Go
- Estrelas
- 17
- Forks
- 2
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
`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`.
Guia de contribuição
Nenhum guia de contribuição indexado para este repositório
Avaliação
Esta issue ainda não foi avaliada.