rspec/rules/S5807/python/rule.adoc

27 lines
647 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Developers may define a list named ``++__all__++`` in a module to limit the names imported from it by wildcard imports (``++from mymodule import *++``). This list can only reference defined names, otherwise an ``++AttributeError++`` will be raised when the module is imported.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
from mymodule import my_func
__all__ = ["unknown_func"] # Noncompliant. "unknown_func" is undefined
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
from mymodule import my_func
__all__ = ["my_func"]
----
2021-04-28 16:49:39 +02:00
== See
* https://docs.python.org/3/tutorial/modules.html#importing-from-a-package[Python documentation - Importing * From a Package]