Bug#699914: python3-serial: TCP mode: data loss, timeout handling broken
Control: tags -1 patch This should be resolved by https://github.com/pyserial/pyserial/pull/382
Bug#699914: python3-serial: TCP mode: data loss, timeout handling broken
Package: python3-serial Version: 2.5-2.1 Severity: normal Dear Maintainer, when used in TCP mode ('socket://:'), python3-serial will loose most of the received characters. This is because SocketSerial.read() _replaces_ the buffer instead of appending to it: [...] data = bytearray()