mirror of
https://github.com/github/semantic.git
synced 2024-12-22 14:21:31 +03:00
13 lines
147 B
Python
13 lines
147 B
Python
|
class Foo:
|
||
|
def dang(self):
|
||
|
return "foo!"
|
||
|
|
||
|
class Bar:
|
||
|
def dang(self):
|
||
|
return "bar!"
|
||
|
|
||
|
|
||
|
class Baz(Foo, Bar): pass
|
||
|
|
||
|
Baz.dang()
|