(&self, _py: Python)
| 196 | /// Determines whether this object is callable. |
| 197 | #[inline] |
| 198 | fn is_callable(&self, _py: Python) -> bool { |
| 199 | unsafe { ffi::PyCallable_Check(self.as_ptr()) != 0 } |
| 200 | } |
| 201 | |
| 202 | /// Calls the object. |
| 203 | /// This is equivalent to the Python expression: 'self(*args, **kwargs)' |
nothing calls this directly
no test coverage detected