(
string: *const c_char,
p: *const c_char,
s: c_int,
f: *mut PyCompilerFlags,
)
| 207 | #[cfg(not(Py_LIMITED_API))] |
| 208 | #[inline] |
| 209 | pub unsafe fn Py_CompileStringFlags( |
| 210 | string: *const c_char, |
| 211 | p: *const c_char, |
| 212 | s: c_int, |
| 213 | f: *mut PyCompilerFlags, |
| 214 | ) -> *mut PyObject { |
| 215 | Py_CompileStringExFlags(string, p, s, f, -1) |
| 216 | } |
| 217 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 218 | extern "C" { |
| 219 | #[cfg(not(Py_LIMITED_API))] |
nothing calls this directly
no outgoing calls
no test coverage detected