(o: *mut PyObject)
| 638 | |
| 639 | #[inline(always)] |
| 640 | pub unsafe fn PyObject_Bytes(o: *mut PyObject) -> *mut PyObject { |
| 641 | PyObject_Str(o) |
| 642 | } |
| 643 | |
| 644 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 645 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected