diff options
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/types.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py index 7e4fec2..4fb2def 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -156,3 +156,6 @@ class DynamicClassAttribute: result = type(self)(self.fget, self.fset, fdel, self.__doc__) result.overwrite_doc = self.overwrite_doc return result + + +__all__ = [n for n in globals() if n[:1] != '_'] |
