Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Remove obsolete ignores on Column dunders #194

Merged
merged 1 commit into from
Aug 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions third_party/3/pyspark/sql/column.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Stubs for pyspark.sql.column (Python 3.5)
# Stubs for pyspark.sql.column (Python 3.5)
#

from typing import overload
Expand All @@ -19,20 +19,20 @@ class Column:
def __div__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __truediv__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __mod__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __radd__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __rsub__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __rmul__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __rdiv__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __rtruediv__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __rmod__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __radd__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ...
def __rsub__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ...
def __rmul__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ...
def __rdiv__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ...
def __rtruediv__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ...
def __rmod__(self, other: Union[bool, int, float, DecimalLiteral]) -> Column: ...
def __pow__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __rpow__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __rpow__(self, other: Union[LiteralType, DecimalLiteral]) -> Column: ...
def __eq__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __ne__(self, other: Any) -> Column: ... # type: ignore
def __lt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __le__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __ge__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __gt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ... # type: ignore
def __lt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __le__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __ge__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __gt__(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def eqNullSafe(self, other: Union[Column, LiteralType, DecimalLiteral]) -> Column: ...
def __and__(self, other: Column) -> Column: ...
def __or__(self, other: Column) -> Column: ...
Expand Down