(fp: *mut FILE, s: *const c_char, b: c_int)
| 148 | #[inline] |
| 149 | #[deprecated(since = "0.5.2", note = "Deprecated since Python 3.9")] |
| 150 | pub unsafe fn PyParser_SimpleParseFile(fp: *mut FILE, s: *const c_char, b: c_int) -> *mut _node { |
| 151 | #[allow(deprecated)] |
| 152 | PyParser_SimpleParseFileFlags(fp, s, b, 0) |
| 153 | } |
| 154 | |
| 155 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 156 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected