The default constructor creates a handle with a ``nullptr``-valued pointer
| 245 | public: |
| 246 | /// The default constructor creates a handle with a ``nullptr``-valued pointer |
| 247 | handle() = default; |
| 248 | |
| 249 | /// Enable implicit conversion from ``PyObject *`` and ``nullptr``. |
| 250 | /// Not using ``handle(PyObject *ptr)`` to avoid implicit conversion from ``0``. |
no outgoing calls