(self, parent, dependents)
| 1937 | _parameters = ["frame", "column"] |
| 1938 | |
| 1939 | def _simplify_up(self, parent, dependents): |
| 1940 | if isinstance(parent, Projection): |
| 1941 | return plain_column_projection(self, parent, dependents, [self.column]) |
| 1942 | |
| 1943 | |
| 1944 | class Drop(Elemwise): |
nothing calls this directly
no test coverage detected