(string: *const c_char, p: *const c_char, s: c_int)
| 202 | #[cfg(not(Py_LIMITED_API))] |
| 203 | #[inline] |
| 204 | pub 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] |
| 209 | pub unsafe fn Py_CompileStringFlags( |
nothing calls this directly
no outgoing calls
no test coverage detected