| 651 | } |
| 652 | |
| 653 | Status VisitDType(PyArray_Descr* dtype, bool* keep_going) { |
| 654 | // Continue visiting dtypes for now. |
| 655 | // TODO(wesm): devise approach for unions |
| 656 | ++numpy_dtype_count_; |
| 657 | *keep_going = true; |
| 658 | return numpy_unifier_.Observe(dtype); |
| 659 | } |
| 660 | |
| 661 | Status VisitList(PyObject* obj, bool* keep_going /* unused */) { |
| 662 | if (!list_inferrer_) { |