[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-04-11 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/16845 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-03-09 Thread dgingrich
Github user dgingrich commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r105249885 --- Diff: python/pyspark/util.py --- @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# +# Licensed to the Apache Software Foundation (ASF) under

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-28 Thread holdenk
Github user holdenk commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r103532524 --- Diff: python/pyspark/util.py --- @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# +# Licensed to the Apache Software Foundation (ASF) under one

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-28 Thread dgingrich
Github user dgingrich commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r103401522 --- Diff: python/pyspark/util.py --- @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# +# Licensed to the Apache Software Foundation (ASF) under

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-28 Thread dgingrich
Github user dgingrich commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r103400340 --- Diff: python/pyspark/broadcast.py --- @@ -82,7 +83,8 @@ def dump(self, value, f): except pickle.PickleError: raise

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-24 Thread holdenk
Github user holdenk commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r103054615 --- Diff: python/pyspark/util.py --- @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# +# Licensed to the Apache Software Foundation (ASF) under one

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-24 Thread holdenk
Github user holdenk commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r101346487 --- Diff: python/pyspark/broadcast.py --- @@ -82,7 +83,8 @@ def dump(self, value, f): except pickle.PickleError: raise

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-08 Thread dgingrich
Github user dgingrich commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r100175968 --- Diff: python/pyspark/broadcast.py --- @@ -82,7 +82,7 @@ def dump(self, value, f): except pickle.PickleError: raise

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-07 Thread HyukjinKwon
Github user HyukjinKwon commented on a diff in the pull request: https://github.com/apache/spark/pull/16845#discussion_r9008 --- Diff: python/pyspark/broadcast.py --- @@ -82,7 +82,7 @@ def dump(self, value, f): except pickle.PickleError: raise

[GitHub] spark pull request #16845: [SPARK-19505][Python] AttributeError on Exception...

2017-02-07 Thread dgingrich
GitHub user dgingrich opened a pull request: https://github.com/apache/spark/pull/16845 [SPARK-19505][Python] AttributeError on Exception.message in Python3 ## What changes were proposed in this pull request? Switch from "e.message" to "str(e)" for Python 3 compatibility.