How to use 'frozen importlib._bootstrap' in Go

Every line of 'frozen importlib._bootstrap' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Go code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
305func PyImport_ImportFrozenModule(name string) error {
306 c_name := C.CString(name)
307 defer C.free(unsafe.Pointer(c_name))
308
309 return int2err(C.PyImport_ImportFrozenModule(c_name))
310}

Related snippets