| 7 | #[repr(C)] |
| 8 | #[derive(Copy, Clone)] |
| 9 | pub struct PyFutureFeatures { |
| 10 | pub ff_features: c_int, |
| 11 | pub ff_lineno: c_int, |
| 12 | } |
| 13 | |
| 14 | pub const FUTURE_NESTED_SCOPES: &str = "nested_scopes"; |
| 15 | pub const FUTURE_GENERATORS: &str = "generators"; |
nothing calls this directly
no outgoing calls
no test coverage detected