Read terminal status line: Clear To Send
(self)
| 214 | self._port_handle.DtrEnable = bool(level) |
| 215 | |
| 216 | def getCTS(self): |
| 217 | """Read terminal status line: Clear To Send""" |
| 218 | if not self._port_handle: raise portNotOpenError |
| 219 | return self._port_handle.CtsHolding |
| 220 | |
| 221 | def getDSR(self): |
| 222 | """Read terminal status line: Data Set Ready""" |
nothing calls this directly
no outgoing calls
no test coverage detected