()
| 536 | } |
| 537 | |
| 538 | func (g *pyGen) genOut() { |
| 539 | g.pybuild.Printf("\nmod.generate(open('%v.c', 'w'))\n\n", g.cfg.Name) |
| 540 | g.gofile.Printf("\n\n") |
| 541 | g.genPrintOut(g.cfg.Name+".go", g.gofile) |
| 542 | g.genPrintOut("build.py", g.pybuild) |
| 543 | if !NoMake { |
| 544 | g.makefile.Printf("\n\n") |
| 545 | g.genPrintOut("Makefile", g.makefile) |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | func (g *pyGen) genPkgWrapOut() { |
| 550 | g.pywrap.Printf("\n\n") |
no test coverage detected