Description
PySpark Column uses __getslice__ as a synonym for substr. __getslice__ is deprecated in Python 2.0 (since 2.0) and has been removed in Python 3.
If we want to support slicing notation it should be handled by __getitem__.
PySpark Column uses __getslice__ as a synonym for substr. __getslice__ is deprecated in Python 2.0 (since 2.0) and has been removed in Python 3.
If we want to support slicing notation it should be handled by __getitem__.