| 318 | bool operator!=(const handle &h) const { return m_ptr != h.m_ptr; } |
| 319 | PYBIND11_DEPRECATED("Use handle::operator bool() instead") |
| 320 | bool check() const { return m_ptr != nullptr; } |
| 321 | |
| 322 | protected: |
| 323 | PyObject *m_ptr = nullptr; |
no outgoing calls
no test coverage detected