Changeset 72232 in vbox
- Timestamp:
- May 17, 2018 10:56:42 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122676
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/serial/loopback.py
r72231 r72232 201 201 self.oThread.start(); 202 202 elif sType == g_ksLoopbackNamedPipeServ: 203 self.oIoPumper = SerialLoopbackNamedPipeServ(sLocation, 0.5); # pylint: disable= R0204203 self.oIoPumper = SerialLoopbackNamedPipeServ(sLocation, 0.5); # pylint: disable=redefined-variable-type 204 204 self.oThread.start(); 205 205 … … 213 213 self.oIoPumper = SerialLoopbackTcpClient(self.sLocation, 0.5); 214 214 elif self.sType == g_ksLoopbackNamedPipeClient: 215 self.oIoPumper = SerialLoopbackNamedPipeClient(self.sLocation, 0.5); # pylint: disable= R0204215 self.oIoPumper = SerialLoopbackNamedPipeClient(self.sLocation, 0.5); # pylint: disable=redefined-variable-type 216 216 except: 217 217 fRc = False;
Note:
See TracChangeset
for help on using the changeset viewer.