aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/conf.py')
-rw-r--r--python/pyspark/conf.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/python/pyspark/conf.py b/python/pyspark/conf.py
index dc7cd0bce5..924da3eecf 100644
--- a/python/pyspark/conf.py
+++ b/python/pyspark/conf.py
@@ -44,7 +44,7 @@ u'/path'
<pyspark.conf.SparkConf object at ...>
>>> conf.get("spark.executorEnv.VAR1")
u'value1'
->>> print conf.toDebugString()
+>>> print(conf.toDebugString())
spark.executorEnv.VAR1=value1
spark.executorEnv.VAR3=value3
spark.executorEnv.VAR4=value4
@@ -56,6 +56,13 @@ spark.home=/path
__all__ = ['SparkConf']
+import sys
+import re
+
+if sys.version > '3':
+ unicode = str
+ __doc__ = re.sub(r"(\W|^)[uU](['])", r'\1\2', __doc__)
+
class SparkConf(object):