mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
16 lines
275 B
Python
16 lines
275 B
Python
class C(object):
|
|
def foo(self):
|
|
pass
|
|
|
|
def bar(self):
|
|
pass
|
|
|
|
def test(self):
|
|
x = self.foo()
|
|
<weak_warning descr="Function 'bar' doesn't return anything">y = self.bar()</weak_warning>
|
|
|
|
|
|
class D(C):
|
|
def foo(self):
|
|
return 2
|