def _should_validate_iterable(self, axis=0):
""" return a boolean whether this axes needs validation for a passed
iterable
"""
ax = self.obj._get_axis(axis)
if isinstance(ax, MultiIndex):
return False
elif ax.is_floating():
return False
return True
indexing.py 文件源码
python
阅读 26
收藏 0
点赞 0
评论 0
评论列表
文章目录