예제 #1
0
파일: python.go 프로젝트: sbinet/go-python
// Finalize shutdowns the python interpreter
func Finalize() error {
	C.Py_Finalize()
	return nil
}
예제 #2
0
파일: python.go 프로젝트: gbbr/textmate
func Finalize() {
	C.Py_Finalize()
}
예제 #3
0
func Exit(status int) {
	C.Py_Finalize()
	os.Exit(status)
}