(op: *mut PyCodeObject)
| 233 | #[inline] |
| 234 | #[cfg(Py_3_11)] |
| 235 | pub unsafe fn PyCode_GetNumFree(op: *mut PyCodeObject) -> Py_ssize_t { |
| 236 | (*op).co_nfreevars as Py_ssize_t |
| 237 | } |
| 238 | |
| 239 | #[inline] |
| 240 | #[cfg(not(Py_3_11))] |
nothing calls this directly
no test coverage detected