common.py 252 B

123456789
  1. from typing import Any
  2. from pandas import Index
  3. def allow_na_ops(obj: Any) -> bool:
  4. """Whether to skip test cases including NaN"""
  5. is_bool_index = isinstance(obj, Index) and obj.is_boolean()
  6. return not is_bool_index and obj._can_hold_na