VarFromHandle gets variable from handle string. Reports error to python but does not return it, for use in inline calls
(h CGoHandle, typnm string)
| 180 | // Reports error to python but does not return it, |
| 181 | // for use in inline calls |
| 182 | func VarFromHandle(h CGoHandle, typnm string) interface{} { |
| 183 | v, _ := VarFromHandleTry(h, typnm) |
| 184 | return v |
| 185 | } |
| 186 | |
| 187 | // VarFromHandleTry version returns the error explicitly, |
| 188 | // for use when error can be processed |
nothing calls this directly
no test coverage detected