Fix closing console of VBox on NIX systems

This commit is contained in:
Julien Duponchelle
2016-11-18 11:27:50 +01:00
parent 11f290482d
commit a872f0328d
3 changed files with 25 additions and 6 deletions

View File

@ -56,6 +56,9 @@ class SerialReaderWriterProtocol(asyncio.Protocol):
def data_received(self, data):
self._output.feed_data(data)
def close(self):
self._output.feed_eof()
class WindowsPipe:
"""