-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Clean up typing.rst
docs about Generic
base classes
#98623
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
Labels
Comments
sobolevn
added a commit
to sobolevn/cpython
that referenced
this issue
Oct 24, 2022
JelleZijlstra
pushed a commit
that referenced
this issue
Oct 25, 2022
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Oct 25, 2022
(cherry picked from commit 5076108) Co-authored-by: Nikita Sobolev <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Oct 25, 2022
(cherry picked from commit 5076108) Co-authored-by: Nikita Sobolev <[email protected]>
miss-islington
added a commit
that referenced
this issue
Oct 25, 2022
(cherry picked from commit 5076108) Co-authored-by: Nikita Sobolev <[email protected]>
miss-islington
added a commit
that referenced
this issue
Oct 25, 2022
(cherry picked from commit 5076108) Co-authored-by: Nikita Sobolev <[email protected]>
Looks like the issue can be closed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are multiple issues right now:
Mapping
hasMapping(Sized, Collection[KT], Generic[VT_co])
which is not correct. Typeshed's definition:class Mapping(Collection[_KT], Generic[_KT, _VT_co]):
. Here we have extraSized
and wrongGeneric
base class with only one type argumentAbstractSet(Sized, Collection[T_co])
, which has extraSized
.Collection
is alwaysSized
The text was updated successfully, but these errors were encountered: