You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We claim to support __all__ variables for explicit exports. But we only do when it is assigned using a list/tuple and literal strings, not when summing lists and/or adding items later, and/or
Describe the solution you'd like
Support more complex assignments. Starred list elements and additions at least (+ and +=).
Describe alternatives you've considered
Stop reyling on __all__ and always resolve implicitly.
Is your feature request related to a problem? Please describe.
We claim to support
__all__
variables for explicit exports. But we only do when it is assigned using a list/tuple and literal strings, not when summing lists and/or adding items later, and/orDescribe the solution you'd like
Support more complex assignments. Starred list elements and additions at least (
+
and+=
).Describe alternatives you've considered
Stop reyling on
__all__
and always resolve implicitly.Additional context
Example: https://github.com/django/django/blob/main/django/db/models/__init__.py
The text was updated successfully, but these errors were encountered: