pyserial
pyserial copied to clipboard
Python hosted doco is out of date
Took me quite a while to realize this >.> In particular, the pythonhosted doco doesn't mention https://github.com/pyserial/pyserial-asyncio but implies that async functionality is still within pyserial itself.
Doc is still out of date:
- https://pythonhosted.org/pyserial/pyserial_api.html does not mention the
read_untilmethod - https://pyserial.readthedocs.io/en/latest/pyserial_api.html (which is not mentioned in the
README.rst) has an oudated signatureread_until(expected=LF, size=None)where as it isread_until(terminator=LF, size=None)in version 3.4 .
Any lead on how to automate all this?
read_until, indeed, the entire serial.serial_util module is still undocumented