aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/sql/column.py2
-rw-r--r--python/pyspark/sql/dataframe.py4
2 files changed, 2 insertions, 4 deletions
diff --git a/python/pyspark/sql/column.py b/python/pyspark/sql/column.py
index 90fb76f9b5..5b26e94698 100644
--- a/python/pyspark/sql/column.py
+++ b/python/pyspark/sql/column.py
@@ -139,8 +139,6 @@ class Column(object):
df.colName + 1
1 / df.colName
- .. note:: Experimental
-
.. versionadded:: 1.3
"""
diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py
index 5378c32a1a..49b4818bcc 100644
--- a/python/pyspark/sql/dataframe.py
+++ b/python/pyspark/sql/dataframe.py
@@ -63,8 +63,6 @@ class DataFrame(object):
people.filter(people.age > 30).join(department, people.deptId == department.id)\
.groupBy(department.name, "gender").agg({"salary": "avg", "age": "max"})
- .. note:: Experimental
-
.. versionadded:: 1.3
"""
@@ -206,6 +204,8 @@ class DataFrame(object):
:class:`DataFrameWriter`. Methods that return a single answer, (e.g., :func:`count` or
:func:`collect`) will throw an :class:`AnalysisException` when there is a streaming
source present.
+
+ .. note:: Experimental
"""
return self._jdf.isStreaming()