pyserial icon indicating copy to clipboard operation
pyserial copied to clipboard

Python hosted doco is out of date

Open Psykar opened this issue 8 years ago • 2 comments

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.

Psykar avatar Jul 19 '17 08:07 Psykar

Doc is still out of date:

  • https://pythonhosted.org/pyserial/pyserial_api.html does not mention the read_until method
  • https://pyserial.readthedocs.io/en/latest/pyserial_api.html (which is not mentioned in the README.rst) has an oudated signature read_until(expected=LF, size=None) where as it is read_until(terminator=LF, size=None) in version 3.4 .

Any lead on how to automate all this?

esciara avatar May 19 '19 20:05 esciara

read_until, indeed, the entire serial.serial_util module is still undocumented

karlp avatar Nov 26 '24 12:11 karlp