Type hints of built-in classes implemented in C #1749
Unanswered
andy-maier
asked this question in
Q&A
Replies: 2 comments
-
Because that's what list accepts at runtime:
In Python code, you can go from a
They are in typeshed: https://github.com/python/typeshed/blob/295a5c3e7a21be975aa5a140ad10e9e8828f4710/stdlib/builtins.pyi#L1010
Because the documentation predates typing. We may add typeshed types at some point to the docs, but making that maintainable is a challenge. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I don't see anything actionable here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to move our nocaselist package forward to use type hints.
So far, its class
NocaseList
is based on classlist
. I would like to keep that. However, using mypy for checking my attempts to move to type hints, I get the error:on the method:
When I change the type hint for the 'number' parameter to
SupportsIndex
, the mypy failure changes to:because apparently
SupportsIndex
cannot be used in numeric expressions:My questions are:
__mul__
,__imul__
,__rmul__
of thelist
class defined asSupportsIndex
?PS: I think type hints are one of the less convincing features in Python. It clutters up the source code and the documentation, at nearly no advantage. The fact that type hints of most built-in classes are neither shown in the help command nor in the official Python documentation 6 years / 6 releases after their introduction speaks for itself.
Beta Was this translation helpful? Give feedback.
All reactions