(o: *mut PyObject)
| 63 | |
| 64 | #[inline(always)] |
| 65 | pub unsafe fn PyUnicode_AS_DATA(o: *mut PyObject) -> *const c_char { |
| 66 | (*(o as *mut PyUnicodeObject)).data as *const c_char |
| 67 | } |
| 68 | |
| 69 | pub const Py_UNICODE_REPLACEMENT_CHARACTER: Py_UNICODE = 0xFFFD; |
| 70 |
nothing calls this directly
no outgoing calls
no test coverage detected