Python: Fix a type-tracking test

This commit is contained in:
Rasmus Wriedt Larsen 2022-06-15 15:58:17 +02:00
Родитель 0957801588
Коммит 24c9aff2fc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -135,7 +135,7 @@ class Bar(Foo):
def track_self(self): # $ tracked_self
self.meth1() # $ tracked_self
super().meth2()
super(Bar, self).foo3() # $ tracked_self
super(Bar, self).meth3() # $ tracked_self
# ------------------------------------------------------------------------------
# Tracking of attribute lookup after "long" import chain