1
0
forked from VimPlug/jedi

Move py__mro__ to a separate function

This commit is contained in:
Dave Halter
2018-09-07 00:46:54 +02:00
parent 99c08fd205
commit 9e7879d43f
4 changed files with 53 additions and 47 deletions

View File

@@ -185,9 +185,6 @@ class TypingContext(_BaseTypingContext):
class TypingClassMixin(object):
def py__mro__(self):
return [self, builtin_from_name(self.evaluator, u'object')]
def py__bases__(self,):
return [LazyKnownContext(builtin_from_name(self.evaluator, u'object'))]