From e248328b39f52073422a12fd0388208de41be1c7 Mon Sep 17 00:00:00 2001
From: Davies Liu <davies.liu@gmail.com>
Date: Fri, 29 Aug 2014 11:47:49 -0700
Subject: [PATCH] [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
---
 python/pyspark/context.py | 2 --
 1 file changed, 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
-- 
GitLab