| 187 | Py_ssize_t size() const { return PyObject_Size(m_ptr); } |
| 188 | |
| 189 | BOOLEAN assign_to(leftv result) |
| 190 | { |
| 191 | return (m_ptr? (m_ptr == Py_None? none_to(result): python_to(result)): TRUE); |
| 192 | } |
| 193 | |
| 194 | void import_as(const char* name) const { |
| 195 | idhdl handle = enterid(name, 0, DEF_CMD, |
no outgoing calls
no test coverage detected