We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c508ae commit b7f5df1Copy full SHA for b7f5df1
Lib/types.py
@@ -332,3 +332,5 @@ def wrapped(*args, **kwargs):
332
EllipsisType = type(Ellipsis)
333
NoneType = type(None)
334
NotImplementedType = type(NotImplemented)
335
+
336
+__all__ = [n for n in globals() if not n.startswith('_')] # for pydoc
0 commit comments