From d5648dc27229ac88679c19ffd63a140dedb609dc 2015-02-03 01:14:24 From: Min RK Date: 2015-02-03 01:14:24 Subject: [PATCH] use \0 instead of 'wake up' to finish output since we are now seeing the captured output, we don't need `wake up` at the end of all of our test outputs. --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 54ac454..bf4e483 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -388,7 +388,7 @@ class StreamCapturer(Thread): return self.stop.set() - os.write(self.writefd, b'wake up') # Ensure we're not locked in a read() + os.write(self.writefd, b'\0') # Ensure we're not locked in a read() self.join() class SubprocessStreamCapturePlugin(Plugin):