MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / Py_CompileString

Function Py_CompileString

python3-sys/src/pythonrun.rs:204–206  ·  view source on GitHub ↗
(string: *const c_char, p: *const c_char, s: c_int)

Source from the content-addressed store, hash-verified

202#[cfg(not(Py_LIMITED_API))]
203#[inline]
204pub unsafe fn Py_CompileString(string: *const c_char, p: *const c_char, s: c_int) -> *mut PyObject {
205 Py_CompileStringExFlags(string, p, s, ptr::null_mut(), -1)
206}
207#[cfg(not(Py_LIMITED_API))]
208#[inline]
209pub unsafe fn Py_CompileStringFlags(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected