(s: *const c_char, b: c_int)
| 139 | #[cfg(not(Py_3_10))] |
| 140 | #[deprecated(since = "0.5.2", note = "Deprecated since Python 3.9")] |
| 141 | pub 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))] |
nothing calls this directly
no outgoing calls
no test coverage detected