summaryrefslogtreecommitdiff
path: root/Lib/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py
index ff90e04973..d414f54931 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -82,3 +82,5 @@ GetSetDescriptorType = type(FunctionType.func_code)
MemberDescriptorType = type(FunctionType.func_globals)
del sys, _f, _g, _C, _x # Not for export
+
+__all__ = list(n for n in globals() if n[:1] != '_')