[GitHub] spark pull request #16782: [SPARK-19348][PYTHON][WIP] PySpark keyword_only d...

2017-02-27 Thread BryanCutler
Github user BryanCutler commented on a diff in the pull request: https://github.com/apache/spark/pull/16782#discussion_r103277884 --- Diff: python/pyspark/__init__.py --- @@ -96,9 +96,11 @@ def keyword_only(func): """ @wraps(func) def wrapper(*args, **kwar

[GitHub] spark pull request #16782: [SPARK-19348][PYTHON][WIP] PySpark keyword_only d...

2017-02-27 Thread davies
Github user davies commented on a diff in the pull request: https://github.com/apache/spark/pull/16782#discussion_r103276349 --- Diff: python/pyspark/__init__.py --- @@ -96,9 +96,11 @@ def keyword_only(func): """ @wraps(func) def wrapper(*args, **kwargs):

[GitHub] spark pull request #16782: [SPARK-19348][PYTHON][WIP] PySpark keyword_only d...

2017-02-02 Thread BryanCutler
GitHub user BryanCutler opened a pull request: https://github.com/apache/spark/pull/16782 [SPARK-19348][PYTHON][WIP] PySpark keyword_only decorator is not thread-safe ## What changes were proposed in this pull request? The `@keyword_only` decorator in PySpark is not thread-safe.