Skip async output when empty byte is given

This commit is contained in:
Ivan Kravets
2019-06-28 19:07:59 +03:00
parent 0035f56e15
commit f30bd18bdc
2 changed files with 6 additions and 3 deletions

View File

@ -33,8 +33,11 @@ class GDBBytesIO(BytesIO): # pylint: disable=too-few-public-methods
STDOUT = sys.stdout
def write(self, text):
for line in text.strip().split("\n"):
self.STDOUT.write('~"%s\\n"\n' % line)
if "\n" in text:
for line in text.strip().split("\n"):
self.STDOUT.write('~"%s\\n"\n' % line)
else:
self.STDOUT.write('~"%s"' % text)
self.STDOUT.flush()

View File

@ -66,7 +66,7 @@ class BuildAsyncPipe(AsyncPipeBase):
for byte in iter(lambda: self._pipe_reader.read(1), ""):
self._buffer += byte
if line and line[-3:] == (line[-1] * 3):
if line and byte.strip() and line[-3:] == (byte * 3):
print_immediately = True
if print_immediately: