I am trying to write a numpy array data to a pipe opened using subprocess.Popen in Python 3.4 and numpy 1.10.4. Here is the code: import numpy import subprocess myArray = ...
I would expect that the second communicate () call completes immediately since we just killed the process: Windows knows that child process is dead, Python knows that Popen object has been kill, but ...