| 442 | #[repr(C)] |
| 443 | #[cfg(not(Py_LIMITED_API))] |
| 444 | pub struct PyASCIIObject { |
| 445 | pub ob_base: PyObject, |
| 446 | pub length: Py_ssize_t, |
| 447 | pub hash: Py_hash_t, |
| 448 | pub state: u32, |
| 449 | #[cfg(not(Py_3_12))] |
| 450 | pub wstr: *mut c_void, |
| 451 | } |
| 452 | |
| 453 | #[repr(C)] |
| 454 | #[cfg(not(Py_LIMITED_API))] |
nothing calls this directly
no outgoing calls
no test coverage detected