Martin Panter added the comment:

My concern with pydoc is that currently when you do “python -m pydoc typing” 
you get stuff like

CLASSES
    builtins.object
        typing.io
        typing.re
        [. . .]
    
    io = class typing.io(builtins.object)
     |  Wrapper namespace for IO generic classes.
     |  [. . .]
    
    re = class typing.re(builtins.object)
     |  Wrapper namespace for re type aliases.
     |  [. . .]

If I comment out these two entries from typing.__all__, there is no longer any 
mention of “re” or “io” in the pydoc output.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26234>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to