| 668 | } |
| 669 | |
| 670 | Status VisitSet(PyObject* obj, bool* keep_going /* unused */) { |
| 671 | if (!list_inferrer_) { |
| 672 | list_inferrer_.reset( |
| 673 | new TypeInferrer(pandas_null_sentinels_, validate_interval_, make_unions_)); |
| 674 | } |
| 675 | ++list_count_; |
| 676 | return list_inferrer_->VisitIterable(obj); |
| 677 | } |
| 678 | |
| 679 | Status VisitNdarray(PyObject* obj, bool* keep_going) { |
| 680 | PyArray_Descr* dtype = PyArray_DESCR(reinterpret_cast<PyArrayObject*>(obj)); |
nothing calls this directly
no test coverage detected