copy constructor without NULL checking, for efficiency
| 405 | |
| 406 | // copy constructor without NULL checking, for efficiency |
| 407 | inline api::object_base::object_base(object_base const& rhs) |
| 408 | : m_ptr(python::incref(rhs.m_ptr)) |
| 409 | {} |
| 410 | |
| 411 | inline api::object_base::object_base(PyObject* p) |
| 412 | : m_ptr(p) |