Read terminal status line: Clear To Send
(self)
| 205 | self.sPort.setDTR(level) |
| 206 | |
| 207 | def getCTS(self): |
| 208 | """Read terminal status line: Clear To Send""" |
| 209 | if not self.sPort: raise portNotOpenError |
| 210 | self.sPort.isCTS() |
| 211 | |
| 212 | def getDSR(self): |
| 213 | """Read terminal status line: Data Set Ready""" |
nothing calls this directly
no outgoing calls
no test coverage detected