MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyASCIIObject

Class PyASCIIObject

python3-sys/src/unicodeobject.rs:444–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

442#[repr(C)]
443#[cfg(not(Py_LIMITED_API))]
444pub 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))]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected