aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavies Liu <davies.liu@gmail.com>2014-08-29 11:47:49 -0700
committerJosh Rosen <joshrosen@apache.org>2014-08-29 11:48:00 -0700
commit98d0716a11e8e5731adfa6031a5d35916f42b6f5 (patch)
tree94ab67d5c56fd2f2221f5f6380e5aaa5fa2d4cf6
parentc71b5c6db151cfc63bfeabdc88034c3dd9dc9e60 (diff)
downloadspark-98d0716a11e8e5731adfa6031a5d35916f42b6f5.tar.gz
spark-98d0716a11e8e5731adfa6031a5d35916f42b6f5.tar.bz2
spark-98d0716a11e8e5731adfa6031a5d35916f42b6f5.zip
[SPARK-3307] [PySpark] Fix doc string of SparkContext.broadcast()
remove invalid docs Author: Davies Liu <davies.liu@gmail.com> Closes #2202 from davies/keep and squashes the following commits: aa3b44f [Davies Liu] remove invalid docs (cherry picked from commit e248328b39f52073422a12fd0388208de41be1c7) Signed-off-by: Josh Rosen <joshrosen@apache.org>
-rw-r--r--python/pyspark/context.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/pyspark/context.py b/python/pyspark/context.py
index a90870ed3a..82f76de31a 100644
--- a/python/pyspark/context.py
+++ b/python/pyspark/context.py
@@ -568,8 +568,6 @@ class SparkContext(object):
L{Broadcast<pyspark.broadcast.Broadcast>}
object for reading it in distributed functions. The variable will
be sent to each cluster only once.
-
- :keep: Keep the `value` in driver or not.
"""
ser = CompressedSerializer(PickleSerializer())
# pass large object by py4j is very slow and need much memory