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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This produces an error with GitHub master and latest types-six:
types-six
# Module "six.moves.collections_abc" has no attribute "Sequence" from six.moves.collections_abc import Sequence
The problem is with how we handle this line in stdlib/collections/abc.pyi:
stdlib/collections/abc.pyi
from _collections_abc import __all__ as __all__
We should propagate the value of __all__ (not just existence), but it doesn't happen right now.
__all__
The text was updated successfully, but these errors were encountered:
Fix re-exporting __all__ in a stub file
c1928d9
Propagate the value of `__all__` from the imported module. Fixes #10381.
Fix re-exporting __all__ in a stub file (#10382)
e14cb14
JukkaL
Successfully merging a pull request may close this issue.
This produces an error with GitHub master and latest
types-six
:The problem is with how we handle this line in
stdlib/collections/abc.pyi
:We should propagate the value of
__all__
(not just existence), but it doesn't happen right now.The text was updated successfully, but these errors were encountered: