1
0
forked from VimPlug/jedi

Make it possible to use inheritance on generics without always specifying type vars, see also discussion in #1593

This commit is contained in:
Dave Halter
2020-06-06 01:23:14 +02:00
parent cf923ec6de
commit df7dd026d2
5 changed files with 38 additions and 4 deletions

View File

@@ -174,6 +174,9 @@ class Value(HelperValueMixin):
def is_class(self):
return False
def is_class_mixin(self):
return False
def is_instance(self):
return False