| 381 | class object : public handle { |
| 382 | public: |
| 383 | object() = default; |
| 384 | PYBIND11_DEPRECATED("Use reinterpret_borrow<object>() or reinterpret_steal<object>()") |
| 385 | object(handle h, bool is_borrowed) : handle(h) { |
| 386 | if (is_borrowed) { |
no outgoing calls