diff --git a/pandas/core/generic.py b/pandas/core/generic.py index a135f567fe6f4..f77d543193e74 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -4555,10 +4555,7 @@ def reindex(self, *args, **kwargs): # check if we are a multi reindex if self._needs_reindex_multi(axes, method, level): - try: - return self._reindex_multi(axes, copy, fill_value) - except Exception: - pass + return self._reindex_multi(axes, copy, fill_value) # perform the reindex on the axes return self._reindex_axes( @@ -9065,7 +9062,6 @@ def _where( # try to not change dtype at first (if try_quick) if try_quick: - new_other = com.values_from_object(self) new_other = new_other.copy() new_other[icond] = other