(u: *mut PyObject)
| 657 | #[inline(always)] |
| 658 | #[cfg(py_sys_config = "Py_UNICODE_SIZE_4")] |
| 659 | pub unsafe fn PyUnicode_AsUTF8String(u: *mut PyObject) -> *mut PyObject { |
| 660 | PyUnicodeUCS4_AsUTF8String(u) |
| 661 | } |
| 662 | |
| 663 | #[inline(always)] |
| 664 | #[cfg(not(py_sys_config = "Py_UNICODE_SIZE_4"))] |
nothing calls this directly
no outgoing calls
no test coverage detected