(self)
| 340 | #[allow(non_snake_case)] // the Python keyword starts with uppercase |
| 341 | #[inline] |
| 342 | pub fn NotImplemented(self) -> PyObject { |
| 343 | unsafe { PyObject::from_borrowed_ptr(self, ffi::Py_NotImplemented()) } |
| 344 | } |
| 345 | |
| 346 | /// Gets the Python type object for type T. |
| 347 | pub fn get_type<T>(self) -> PyType |
nothing calls this directly
no test coverage detected