| 21 | #[derive(Copy, Clone)] |
| 22 | #[cfg(not(Py_LIMITED_API))] |
| 23 | pub struct PyFutureFeatures { |
| 24 | pub ff_features: c_int, |
| 25 | #[cfg(not(Py_3_12))] |
| 26 | pub ff_lineno: c_int, |
| 27 | #[cfg(Py_3_12)] |
| 28 | pub ff_location: _PyCompilerSrcLocation, |
| 29 | } |
| 30 | |
| 31 | // TODO: PyCF_MASK etc. constants |
| 32 |
nothing calls this directly
no outgoing calls
no test coverage detected