Returns `true` if this kind of syntax is supported on `target_version`.
(self, target_version: PythonVersion)
| 1143 | |
| 1144 | /// Returns `true` if this kind of syntax is supported on `target_version`. |
| 1145 | pub(crate) fn is_supported(self, target_version: PythonVersion) -> bool { |
| 1146 | !self.is_unsupported(target_version) |
| 1147 | } |
| 1148 | } |
| 1149 | |
| 1150 | #[cfg(target_pointer_width = "64")] |
no test coverage detected