| 658 | } |
| 659 | |
| 660 | static PyObject* PyTensorObject_ref_index(PyObject* self, void* unused) { |
| 661 | return functional::CastToPyObject(PyTensor_Unpack(self)->ref_index()); |
| 662 | } |
| 663 | |
| 664 | static int PyTensorObject_set_ref_index(PyObject* self, PyObject* index, void* unused) { |
| 665 | HANDLE_ERRORS |
nothing calls this directly
no test coverage detected