| 528 | } |
| 529 | |
| 530 | int IsSequenceForDataHelper(PyObject* o) { |
| 531 | return IsSequenceHelper(o) == 1 && !PyList_Check(o) && |
| 532 | !IsSparseTensorValueType(o); |
| 533 | } |
| 534 | |
| 535 | ValueIteratorPtr GetValueIterator(PyObject* nested) { |
| 536 | if (PyDict_Check(nested)) { |
no test coverage detected