aboutsummaryrefslogtreecommitdiff
path: root/dev/sparktestsupport/modules.py
diff options
context:
space:
mode:
authorDavid Gingrich <david@textio.com>2017-04-11 12:18:31 -0700
committerHolden Karau <holden@us.ibm.com>2017-04-11 12:18:31 -0700
commit6297697f975960a3006c4e58b4964d9ac40eeaf5 (patch)
treefb8e7a38b1fee01fa1b32a346e041f716c4631b0 /dev/sparktestsupport/modules.py
parent123b4fbbc331f116b45f11b9f7ecbe0b0575323d (diff)
downloadspark-6297697f975960a3006c4e58b4964d9ac40eeaf5.tar.gz
spark-6297697f975960a3006c4e58b4964d9ac40eeaf5.tar.bz2
spark-6297697f975960a3006c4e58b4964d9ac40eeaf5.zip
[SPARK-19505][PYTHON] AttributeError on Exception.message in Python3
## What changes were proposed in this pull request? Added `util._message_exception` helper to use `str(e)` when `e.message` is unavailable (Python3). Grepped for all occurrences of `.message` in `pyspark/` and these were the only occurrences. ## How was this patch tested? - Doctests for helper function ## Legal This is my original work and I license the work to the project under the project’s open source license. Author: David Gingrich <david@textio.com> Closes #16845 from dgingrich/topic-spark-19505-py3-exceptions.
Diffstat (limited to 'dev/sparktestsupport/modules.py')
-rw-r--r--dev/sparktestsupport/modules.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py
index 246f5188a5..78b5b8b0f4 100644
--- a/dev/sparktestsupport/modules.py
+++ b/dev/sparktestsupport/modules.py
@@ -340,6 +340,7 @@ pyspark_core = Module(
"pyspark.profiler",
"pyspark.shuffle",
"pyspark.tests",
+ "pyspark.util",
]
)