Get the current stop bits setting.
(self)
| 360 | if self._isOpen: self._reconfigurePort() |
| 361 | |
| 362 | def getStopbits(self): |
| 363 | """Get the current stop bits setting.""" |
| 364 | return self._stopbits |
| 365 | |
| 366 | stopbits = property(getStopbits, setStopbits, doc="Stop bits setting") |
| 367 |
nothing calls this directly
no outgoing calls
no test coverage detected