py/bind: better pythonization
Abierto
- Lenguaje dominante
- Go
- Estrellas
- 17
- Forks
- 2
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
`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`.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.