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

Function PyParser_SimpleParseFile

python3-sys/src/pythonrun.rs:150–153  ·  view source on GitHub ↗
(fp: *mut FILE, s: *const c_char, b: c_int)

Source from the content-addressed store, hash-verified

148#[inline]
149#[deprecated(since = "0.5.2", note = "Deprecated since Python 3.9")]
150pub 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"))]
156extern "C" {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected