Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
aebf7a0
Plumb through the jvm output, we could test this by overloading sys.s…
holdenk Jan 6, 2017
3e8d7eb
Python3 support, isn't necessarily a file type. Instead just look for…
holdenk Jan 6, 2017
ca308b1
Only redirect if in ZMQInteractiveShell (e.g. notebook) or StringIO (…
holdenk Jan 12, 2017
0118631
We can't test this in the normal test classes since the JVM is alread…
holdenk Jan 12, 2017
dc03ee6
Merge in master
holdenk Feb 4, 2017
733d5b9
Update the sanity check to standalone tests
holdenk Feb 4, 2017
4aea955
Quick first pass at setting up standalone tests as well
holdenk Feb 4, 2017
25e9867
Merge branch 'master' into SPARK-19094-plumb-through-logging-for-ijup…
holdenk Mar 14, 2017
15d999b
pep8 fixes
holdenk Mar 14, 2017
a01f8f8
Fix pip tests to use the correct launch
holdenk Mar 14, 2017
955f163
Merge branch 'master' into SPARK-19094-plumb-through-logging-for-ijup…
holdenk Apr 18, 2017
2bfaa16
Only do the pyspark ml tests if numpy is present
holdenk Apr 18, 2017
6c22a89
Merge branch 'master' into SPARK-19094-plumb-through-logging-for-ijup…
holdenk May 6, 2017
219f017
Merge branch 'master' into SPARK-19094-plumb-through-logging-for-ijup…
holdenk May 9, 2017
a2caf97
Update standalone tests
holdenk May 10, 2017
1166b9e
Remove extra blank lines (style)
holdenk May 12, 2017
7fcc839
debug failure
holdenk May 12, 2017
08632fd
Change debug
holdenk May 13, 2017
64aee29
Check for the pypy error string as well, also catch re/throw errors d…
holdenk May 14, 2017
89cf739
Merge branch 'master' into SPARK-19094-plumb-through-logging-for-ijup…
holdenk May 14, 2017
bb36f50
hmmm lets makesure grab jvm is true
holdenk May 20, 2017
24ff579
hmmm....
holdenk May 20, 2017
c450d24
hmmm....
holdenk May 20, 2017
e0c3a6b
Buffer the stderr/stdout
holdenk May 20, 2017
009e7c4
Close FDs. We should really use dup2 if sys.stdout / sys.stderr have …
holdenk May 21, 2017
273f8a0
Merge branch 'master' into SPARK-19094-plumb-through-logging-for-ijup…
holdenk Nov 14, 2017
6a3f59a
Merge branch 'master' into SPARK-19094-plumb-through-logging-for-ijup…
holdenk Jan 17, 2018
ae450e8
Skip on pypy
holdenk Jan 17, 2018
33a2bab
Log a warning if we are running in a notebook in PyPy and we want to …
holdenk Jan 17, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
hmmm....
  • Loading branch information
holdenk committed May 20, 2017
commit c450d2447693769e3ad8f7c70e8830e878ac91c8
1 change: 1 addition & 0 deletions python/pyspark/java_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ def preexec_func():
def connect(input_pipe, out_pipe):
"""Connect the input pipe to the output. We can't use os.dup for IPython
or directly write to them (see https://github.com/ipython/ipython/pull/3072/)."""
print("Connecting pipes....")
for line in iter(input_pipe.readline, b''):
print(line, file=out_pipe)
input_pipe.close()
Expand Down