| 166 | }; |
| 167 | |
| 168 | int TensorSize_Check(PyObject* p) { return p && p->ob_type == &TensorSize_Type; } |
| 169 | |
| 170 | PyObject* TensorSize_New(Py_ssize_t len) { return TensorSize_Type.tp_alloc(&TensorSize_Type, len); } |
| 171 |
no outgoing calls
no test coverage detected