You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by gu...@apache.org on 2019/01/07 03:58:52 UTC

[spark] branch branch-2.3 updated: [SPARK-25253][PYSPARK][FOLLOWUP] Undefined name: from pyspark.util import _exception_message

This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch branch-2.3
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new 38fe12b  [SPARK-25253][PYSPARK][FOLLOWUP] Undefined name: from pyspark.util import _exception_message
38fe12b is described below

commit 38fe12bd6a2a381d98db51d86fcbf81672bb3a3e
Author: cclauss <cc...@bluewin.ch>
AuthorDate: Thu Aug 30 08:13:11 2018 +0800

    [SPARK-25253][PYSPARK][FOLLOWUP] Undefined name: from pyspark.util import _exception_message
    
    HyukjinKwon
    
    ## What changes were proposed in this pull request?
    
    add __from pyspark.util import \_exception_message__ to python/pyspark/java_gateway.py
    
    ## How was this patch tested?
    
    [flake8](http://flake8.pycqa.org) testing of https://github.com/apache/spark on Python 3.7.0
    
    $ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
    ```
    ./python/pyspark/java_gateway.py:172:20: F821 undefined name '_exception_message'
                emsg = _exception_message(e)
                       ^
    1     F821 undefined name '_exception_message'
    1
    ```
    
    Please review http://spark.apache.org/contributing.html before opening a pull request.
    
    Closes #22265 from cclauss/patch-2.
    
    Authored-by: cclauss <cc...@bluewin.ch>
    Signed-off-by: hyukjinkwon <gu...@apache.org>
---
 python/pyspark/java_gateway.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/python/pyspark/java_gateway.py b/python/pyspark/java_gateway.py
index 271eff6..a144806 100644
--- a/python/pyspark/java_gateway.py
+++ b/python/pyspark/java_gateway.py
@@ -34,6 +34,7 @@ if sys.version >= '3':
 from py4j.java_gateway import java_import, JavaGateway, GatewayParameters
 from pyspark.find_spark_home import _find_spark_home
 from pyspark.serializers import read_int, write_with_length, UTF8Deserializer
+from pyspark.util import _exception_message
 
 
 def launch_gateway(conf=None):


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org