We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eeae28 commit 7791885Copy full SHA for 7791885
pyo3-ffi/src/cpython/unicodeobject.rs
@@ -2,7 +2,9 @@
2
use crate::Py_hash_t;
3
use crate::{PyObject, Py_UCS1, Py_UCS2, Py_UCS4, Py_ssize_t};
4
use libc::wchar_t;
5
-use std::os::raw::{c_char, c_int, c_uint, c_ushort, c_void};
+use std::os::raw::{c_char, c_int, c_uint, c_void};
6
+#[cfg(Py_3_14)]
7
+use std::os::raw::c_ushort;
8
9
// skipped Py_UNICODE_ISSPACE()
10
// skipped Py_UNICODE_ISLOWER()
0 commit comments