-
Notifications
You must be signed in to change notification settings - Fork 133
Fix List[T] not inheriting list/List methods #260
Comments
Actually, reading through that vscode-python bug, the user is expecting to see list functions on a, not just |
Reading through that thread also shows that |
class List(list, MutableSequence[T], extra=list): Which to me implies that it should be inheriting everything from |
I have updated my comment to drop the |
microsoft/vscode-python#2446
E.g.
Currently
a
has no completions instead of having completions for a list.See generics from PEP 484 for some details.
The text was updated successfully, but these errors were encountered: