I was looking into how the pydoc module works in Python 3.9 and noticed that if you run pydoc server and go to the codecs.py module documentation, there's no documentation for the BufferedIncrementalDecoder and BufferedIncrementalEncoder classes (see picture).
I start the doc server with the following command:
py -m pydoc -b
I tried to find an online pydoc server for clarity, but only found it for Python 2.7. As you can see, BufferedIncrementalDecoder and BufferedIncrementalEncoder are also missing, although they are in the codecs.py module.
What am I missing here?