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

Function PyParser_SimpleParseString

python3-sys/src/pythonrun.rs:141–144  ·  view source on GitHub ↗
(s: *const c_char, b: c_int)

Source from the content-addressed store, hash-verified

139#[cfg(not(Py_3_10))]
140#[deprecated(since = "0.5.2", note = "Deprecated since Python 3.9")]
141pub unsafe fn PyParser_SimpleParseString(s: *const c_char, b: c_int) -> *mut _node {
142 #[allow(deprecated)]
143 PyParser_SimpleParseStringFlags(s, b, 0)
144}
145
146#[cfg(not(Py_LIMITED_API))]
147#[cfg(not(Py_3_10))]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected