(args []string)
| 57 | } |
| 58 | |
| 59 | func Main(args []string) int { |
| 60 | argv := make([]*C.char, len(args)) |
| 61 | |
| 62 | for i, arg := range args { |
| 63 | argv[i] = C.CString(arg) |
| 64 | defer C.free(unsafe.Pointer(argv[i])) |
| 65 | } |
| 66 | |
| 67 | return int(C.Py_Main(C.int(len(argv)), &argv[0])) |
| 68 | } |
| 69 | |
| 70 | // EnterRecusiveCall marks a point where a recursive Go-level call is about to |
| 71 | // be performed. It returns true if the recursive call is permitted, otherwise |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…