Commit f5cd6f2d authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #23504: Added an __all__ to the types module.

parents 6f8f55f5 7e06819c
......@@ -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] != '_']
......@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
- Issue #23504: Added an __all__ to the types module.
- Issue #23563: Optimized utility functions in urllib.parse.
- Issue #7830: Flatten nested functools.partial.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment