From 67e94f4c8ada69ddde4c79bb13620918691281a7 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Tue, 29 Sep 2020 15:04:51 -0700 Subject: [PATCH] Fixed markdown rendering issue in docs. --- docs/typed-libraries.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/typed-libraries.md b/docs/typed-libraries.md index 7743238da..d05a515e1 100644 --- a/docs/typed-libraries.md +++ b/docs/typed-libraries.md @@ -36,7 +36,6 @@ Each module exposes a set of symbols. Some of these symbols are considered “pr * A module can expose an `__all__` symbol at the module level that provides a list of names that are considered part of the interface. This overrides all other rules above, allowing imported symbols or symbols whose names begin with an underscore to be included in the interface. * Local variables within a function (including nested functions) are always considered private. -### __all__ The following idioms are supported for defining the values contained within `__all__`. These restrictions allow type checkers to statically determine the value of `__all__`. * `__all__ = ['a', b']`