(self, expr_cls, other, level, fill_value, axis)
| 4244 | return new_collection(expr.ToFrame(self, name=name)) |
| 4245 | |
| 4246 | def _comparison_op(self, expr_cls, other, level, fill_value, axis): |
| 4247 | if level is not None: |
| 4248 | raise NotImplementedError("level must be None") |
| 4249 | self._validate_axis(axis) |
| 4250 | return new_collection(expr_cls(self, other, fill_value=fill_value)) |
| 4251 | |
| 4252 | def lt(self, other, level=None, fill_value=None, axis=0): |
| 4253 | return self._comparison_op(expr.LTSeries, other, level, fill_value, axis) |
no test coverage detected