(initsigs bool)
| 25 | } |
| 26 | |
| 27 | func InitializeEx(initsigs bool) { |
| 28 | if initsigs { |
| 29 | C.Py_InitializeEx(1) |
| 30 | } else { |
| 31 | C.Py_InitializeEx(0) |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func Finalize() { |
| 36 | C.Py_Finalize() |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…