(s *symbol, o *Func)
| 202 | } |
| 203 | |
| 204 | func (g *pyGen) genMethod(s *symbol, o *Func) { |
| 205 | if g.genFuncSig(s, o) { |
| 206 | g.genFuncBody(s, o) |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | func isIfaceHandle(gdoc string) (bool, string) { |
| 211 | const PythonIface = "gopy:interface=handle" |
no test coverage detected