| 453 | #[repr(C)] |
| 454 | #[cfg(not(Py_LIMITED_API))] |
| 455 | pub struct PyCompactUnicodeObject { |
| 456 | _base: PyASCIIObject, |
| 457 | utf8_length: Py_ssize_t, |
| 458 | utf8: *mut u8, |
| 459 | #[cfg(not(Py_3_12))] |
| 460 | wstr_length: Py_ssize_t, |
| 461 | } |
| 462 | |
| 463 | #[repr(C)] |
| 464 | #[cfg(not(Py_LIMITED_API))] |
nothing calls this directly
no outgoing calls
no test coverage detected