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.
__all__
1 parent e523717 commit 0fed553Copy full SHA for 0fed553
docs/spec/distributing.rst
@@ -390,11 +390,11 @@ The following idioms are supported for defining the values contained
390
within ``__all__``. These restrictions allow type checkers to statically
391
determine the value of ``__all__``.
392
393
-- ``__all__ = ('a', b')``
394
-- ``__all__ = ['a', b']``
395
-- ``__all__ += ['a', b']``
+- ``__all__ = ('a', 'b')``
+- ``__all__ = ['a', 'b']``
+- ``__all__ += ['a', 'b']``
396
- ``__all__ += submodule.__all__``
397
-- ``__all__.extend(['a', b'])``
+- ``__all__.extend(['a', 'b'])``
398
- ``__all__.extend(submodule.__all__)``
399
- ``__all__.append('a')``
400
- ``__all__.remove('a')``
0 commit comments