aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-09-01 00:32:28 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-09-01 14:13:16 -0700
commit0a8cc309211c62f8824d76618705c817edcf2424 (patch)
tree86cb7e3b2611b9287335699dcd535f145ccf56d6 /python
parent5b4dea21439e86b61447bdb1613b2ddff9ffba9f (diff)
downloadspark-0a8cc309211c62f8824d76618705c817edcf2424.tar.gz
spark-0a8cc309211c62f8824d76618705c817edcf2424.tar.bz2
spark-0a8cc309211c62f8824d76618705c817edcf2424.zip
Move some classes to more appropriate packages:
* RDD, *RDDFunctions -> org.apache.spark.rdd * Utils, ClosureCleaner, SizeEstimator -> org.apache.spark.util * JavaSerializer, KryoSerializer -> org.apache.spark.serializer
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/pyspark/context.py b/python/pyspark/context.py
index 906e9221a1..8fbf296509 100644
--- a/python/pyspark/context.py
+++ b/python/pyspark/context.py
@@ -114,9 +114,9 @@ class SparkContext(object):
self.addPyFile(path)
# Create a temporary directory inside spark.local.dir:
- local_dir = self._jvm.org.apache.spark.Utils.getLocalDir()
+ local_dir = self._jvm.org.apache.spark.util.Utils.getLocalDir()
self._temp_dir = \
- self._jvm.org.apache.spark.Utils.createTempDir(local_dir).getAbsolutePath()
+ self._jvm.org.apache.spark.util.Utils.createTempDir(local_dir).getAbsolutePath()
@property
def defaultParallelism(self):