-
Notifications
You must be signed in to change notification settings - Fork 51
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
Improve ellipsis type #686
Comments
Thanks @aaronmondal, that sounds like a useful improvement to me. |
A code comment should be fine I think - it doesn't seem desirable to include something like that in the html docs for the standard. |
@rgommers Cool, I'll send a PR soon 😊 |
Prior to 3.10 you can always use EDIT: |
This tripped me up - I expected just to be able to copy-paste the signature in the API docs into my implementation. It took me down a rabbit hole before I eventually found that I'm happy to submit a PR to fix this. |
Agree we should make the type annotations copy-pastable when that is possible. |
The current
ellipsis = TypeVar('ellipsis')
doesn't behave well with typechecking. It's also unclear in the Markdown docs whatellipsis
is supposed to be. It's kind of clear from the context, but not compatible with "real" python types:The downside of
EllipsisType
is that it's only available in Python 3.10 onwards. However, we have the following:It seems to me like it would make sense to change the current
ellipsis = TypeVar('ellipsis')
to one of the variants that works. I think it would also be a clarification in the documentation to changeellipsis
toEllipsisType
and maybe have a note somewhere that those using Python < 3.10 can use the equivalenttype(...)
ortype(Ellipsis)
.Potentially related to
The text was updated successfully, but these errors were encountered: