-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Add _typeshed.Incomplete #7535
New issue
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
Add _typeshed.Incomplete #7535
Conversation
This comment has been minimized.
This comment has been minimized.
I have not idea why mypy "Cannot determine type of "Any"". This error also exist when not using |
This comment has been minimized.
This comment has been minimized.
@sobolevn figured out a fix for this mypy bug in python/mypy#12134, but it hasn't been merged yet |
This comment has been minimized.
This comment has been minimized.
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Since python/typeshed#7535, typeshed has a new type `_typeshed.Incomplete`, intended to mark fields that are partly annotated, but need more manual investigation. This applies to all types generated by stubgen, except when explicitly annotated with `Any` in the implementation.
Since python/typeshed#7535, typeshed has a new type `_typeshed.Incomplete`, intended to mark fields that are partly annotated, but need more manual investigation. This applies to all types generated by stubgen, except when explicitly annotated with `Any` in the implementation.
Closes: #5613