mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
4 lines
84 B
Python
4 lines
84 B
Python
"""Test: late-binding of `__all__`."""
|
|
|
|
__all__ = ("bar",)
|
|
from foo import bar, baz
|